rtp.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. ***********************************************************************
  3. * COPYRIGHT AND WARRANTY INFORMATION
  4. *
  5. * Copyright 2001, International Telecommunications Union, Geneva
  6. *
  7. * DISCLAIMER OF WARRANTY
  8. *
  9. * These software programs are available to the user without any
  10. * license fee or royalty on an "as is" basis. The ITU disclaims
  11. * any and all warranties, whether express, implied, or
  12. * statutory, including any implied warranties of merchantability
  13. * or of fitness for a particular purpose.  In no event shall the
  14. * contributor or the ITU be liable for any incidental, punitive, or
  15. * consequential damages of any kind whatsoever arising from the
  16. * use of these programs.
  17. *
  18. * This disclaimer of warranty extends to the user of these programs
  19. * and user's customers, employees, agents, transferees, successors,
  20. * and assigns.
  21. *
  22. * The ITU does not represent or warrant that the programs furnished
  23. * hereunder are free of infringement of any third-party patents.
  24. * Commercial implementations of ITU-T Recommendations, including
  25. * shareware, may be subject to royalty fees to patent holders.
  26. * Information regarding the ITU-T patent policy is available from
  27. * the ITU Web site at http://www.itu.int.
  28. *
  29. * THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.
  30. ************************************************************************
  31. */
  32. /*!
  33.  ***************************************************************************
  34.  *
  35.  * file rtp.h
  36.  *
  37.  * brief
  38.  *    Definition of structures and functions to handle RTP headers.  For a
  39.  *    description of RTP see RFC1889 on http://www.ietf.org
  40.  *
  41.  * date
  42.  *    30 September 2001
  43.  *
  44.  * author
  45.  *    Stephan Wenger   stewe@cs.tu-berlin.de
  46.  **************************************************************************/
  47. #ifndef _RTP_H_
  48. #define _RTP_H_
  49. #include <stdio.h>
  50. #include "global.h"
  51. #define MAXRTPPAYLOADLEN  (65536 - 40)    //!< Maximum payload size of an RTP packet
  52. #define MAXRTPPACKETSIZE  (65536 - 28)    //!< Maximum size of an RTP packet incl. header
  53. #define H26LPAYLOADTYPE 105               //!< RTP paylaod type fixed here for simplicity
  54. #define H26LSSRC 0x12345678               //!< SSRC, chosen to simplify debugging
  55. #define RTP_TR_TIMESTAMP_MULT 1000        //!< should be something like 27 Mhz / 29.97 Hz
  56. typedef struct 
  57. {
  58.   unsigned int v;          //!< Version, 2 bits, MUST be 0x2
  59.   unsigned int p;          //!< Padding bit, Padding MUST NOT be used
  60.   unsigned int x;          //!< Extension, MUST be zero */
  61.   unsigned int cc;         /*!< CSRC count, normally 0 in the absence 
  62.                                 of RTP mixers */
  63.   unsigned int m;          //!< Marker bit
  64.   unsigned int pt;         //!< 7 bits, Payload Type, dynamically established
  65.   unsigned int seq;        /*!< RTP sequence number, incremented by one for 
  66.                                 each sent packet */
  67.   unsigned int timestamp;  //!< timestamp, 27 MHz for H.26L
  68.   unsigned int ssrc;       //!< Synchronization Source, chosen randomly
  69.   byte *       payload;    //!< the payload including payload headers
  70.   unsigned int paylen;     //!< length of payload in bytes
  71.   byte *       packet;     //!< complete packet including header and payload
  72.   unsigned int packlen;    //!< length of packet, typically paylen+12
  73. } RTPpacket_t;
  74. int  RTPSequenceHeader (FILE *out);
  75. int  ComposeRTPPacket (RTPpacket_t *p);
  76. int  DecomposeRTPpacket (RTPpacket_t *p);
  77. int  WriteRTPPacket (RTPpacket_t *p, FILE *f);
  78. void DumpRTPHeader (RTPpacket_t *p);
  79. int  RTPSequenceHeader(FILE *);
  80. void RTPUpdateTimestamp (int tr);
  81. int  RTPSliceHeader();
  82. int  RTPWriteBits (int Marker, int PacketType, void * bitstream, 
  83.                    int BitStreamLenInByte, FILE *out);
  84. #endif