Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.7 KiB

  1. /* *************************************************************************
  2. ** INTEL Corporation Proprietary Information
  3. **
  4. ** This listing is supplied under the terms of a license
  5. ** agreement with INTEL Corporation and may not be copied
  6. ** nor disclosed except in accordance with the terms of
  7. ** that agreement.
  8. **
  9. ** Copyright (c) 1995 Intel Corporation.
  10. ** Copyright (c) 1996 Intel Corporation.
  11. ** All Rights Reserved.
  12. **
  13. ** *************************************************************************
  14. */
  15. // $Author: gmlim $
  16. // $Date: 17 Apr 1997 16:55:12 $
  17. // $Archive: S:\h26x\src\enc\e3rtp.h_v $
  18. // $Header: S:\h26x\src\enc\e3rtp.h_v 1.4 17 Apr 1997 16:55:12 gmlim $
  19. // $Log: S:\h26x\src\enc\e3rtp.h_v $
  20. ;//
  21. ;// Rev 1.4 17 Apr 1997 16:55:12 gmlim
  22. ;// Added H263RTP_GetMaxBsInfoStreamSize().
  23. ;//
  24. ;// Rev 1.3 05 Dec 1996 17:03:44 GMLIM
  25. ;//
  26. ;// Changed the way RTP packetization was done to guarantee proper packet
  27. ;// size.
  28. ;//
  29. ;// Rev 1.2 16 Sep 1996 16:50:26 CZHU
  30. ;// changed RTP BS Init for smaller packet size
  31. ;//
  32. ;// Rev 1.1 29 Aug 1996 09:30:38 CZHU
  33. ;//
  34. ;// Added a function checking intra-GOB
  35. ;//
  36. ;// Rev 1.0 22 Apr 1996 17:09:46 BECHOLS
  37. ;// Initial revision.
  38. ;//
  39. ;// Rev 1.4 01 Mar 1996 16:36:30 DBRUCKS
  40. ;//
  41. ;// add unPacketSize parameter to H263RTP_InitBsInfoStream
  42. ;//
  43. ;// Rev 1.3 23 Feb 1996 16:18:46 CZHU
  44. ;// No change.
  45. ;//
  46. ;// Rev 1.2 15 Feb 1996 12:00:48 CZHU
  47. ;// ean up
  48. ;// Clean up
  49. ;//
  50. ;// Rev 1.1 14 Feb 1996 14:59:38 CZHU
  51. ;// Support both mode A and mode B payload modes.
  52. ;//
  53. ;// Rev 1.0 12 Feb 1996 17:04:46 CZHU
  54. ;// Initial revision.
  55. ;//
  56. ;// Rev 1.3 11 Dec 1995 14:53:24 CZHU
  57. ;//
  58. ;// Rev 1.2 04 Dec 1995 16:50:52 CZHU
  59. ;//
  60. ;// Rev 1.1 01 Dec 1995 15:54:12 CZHU
  61. ;// Included Init() and Term() functions.
  62. ;//
  63. ;// Rev 1.0 01 Dec 1995 15:31:10 CZHU
  64. ;// Initial revision.
  65. /*
  66. * This file is for RTP payload generation. See EPS for details
  67. *
  68. *
  69. */
  70. #ifndef _H263_RTP_INC_
  71. #define _H263_RTP_INC_
  72. extern I32 H263RTP_InitBsInfoStream( LPCODINST,T_H263EncoderCatalog *);
  73. extern void H263RTP_ResetBsInfoStream(T_H263EncoderCatalog *);
  74. extern I32 H263RTP_UpdateBsInfo(T_H263EncoderCatalog *,T_MBlockActionStream *,U32,U32,U32,U8 *,U32);
  75. extern void H263RTP_TermBsInfoStream(T_H263EncoderCatalog * );
  76. extern U32 H263RTP_AttachBsInfoStream(T_H263EncoderCatalog * ,U8 *, U32);
  77. extern U32 H263RTPFindMVs (T_H263EncoderCatalog *, T_MBlockActionStream * , U32 ,U32, I8 [2]);
  78. //Chad intra GOB
  79. extern BOOL IsIntraCoded( T_H263EncoderCatalog *, U32);
  80. extern U32 H263RTP_GetMaxBsInfoStreamSize(T_H263EncoderCatalog *EC);
  81. #endif