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.

78 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: AGUPTA2 $
  16. // $Date: 14 Apr 1997 16:58:24 $
  17. // $Archive: S:\h26x\src\enc\e1rtp.h_v $
  18. // $Header: S:\h26x\src\enc\e1rtp.h_v 1.1 14 Apr 1997 16:58:24 AGUPTA2 $
  19. // $Log: S:\h26x\src\enc\e1rtp.h_v $
  20. //
  21. // Rev 1.1 14 Apr 1997 16:58:24 AGUPTA2
  22. // Added a new function to return size of just the extended bit-stream (RTP pa
  23. //
  24. // Rev 1.0 21 Aug 1996 18:32:00 RHAZRA
  25. // Initial revision.
  26. ;//
  27. ;// Rev 1.0 22 Apr 1996 17:09:46 BECHOLS
  28. ;// Initial revision.
  29. ;//
  30. ;// Rev 1.4 01 Mar 1996 16:36:30 DBRUCKS
  31. ;//
  32. ;// add unPacketSize parameter to H263RTP_InitBsInfoStream
  33. ;//
  34. ;// Rev 1.3 23 Feb 1996 16:18:46 CZHU
  35. ;// No change.
  36. ;//
  37. ;// Rev 1.2 15 Feb 1996 12:00:48 CZHU
  38. ;// ean up
  39. ;// Clean up
  40. ;//
  41. ;// Rev 1.1 14 Feb 1996 14:59:38 CZHU
  42. ;// Support both mode A and mode B payload modes.
  43. ;//
  44. ;// Rev 1.0 12 Feb 1996 17:04:46 CZHU
  45. ;// Initial revision.
  46. ;//
  47. ;// Rev 1.3 11 Dec 1995 14:53:24 CZHU
  48. ;//
  49. ;// Rev 1.2 04 Dec 1995 16:50:52 CZHU
  50. ;//
  51. ;// Rev 1.1 01 Dec 1995 15:54:12 CZHU
  52. ;// Included Init() and Term() functions.
  53. ;//
  54. ;// Rev 1.0 01 Dec 1995 15:31:10 CZHU
  55. ;// Initial revision.
  56. /*
  57. * This file is for RTP payload generation. See EPS for details
  58. *
  59. *
  60. */
  61. #ifndef _H261_RTP_INC_
  62. #define _H261_RTP_INC_
  63. extern I32 H261RTP_InitBsInfoStream(T_H263EncoderCatalog *, UINT unPacketSize);
  64. extern I32 H261RTP_MBUpdateBsInfo (T_H263EncoderCatalog *,
  65. T_MBlockActionStream *,
  66. U32,U32,U32,U8 *,U32 , UN, UN);
  67. extern I32 H261RTP_GOBUpdateBsInfo (T_H263EncoderCatalog *,U32,U8 *,U32);
  68. extern void H261RTP_TermBsInfoStream(T_H263EncoderCatalog * );
  69. extern U32 H261RTP_AttachBsInfoStream(T_H263EncoderCatalog * ,U8 *, U32);
  70. extern U32 H261RTP_GetMaxBsInfoStreamSize(T_H263EncoderCatalog * EC);
  71. extern U32 H261RTPFindMVs (T_H263EncoderCatalog *, T_MBlockActionStream * ,
  72. /* U32 ,U32,*/
  73. I8 [2], UN, UN);
  74. extern I32 H261RTP_RewindBsInfoStream(T_H263EncoderCatalog *, U32);
  75. #endif