rtp.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:3k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  ***************************************************************************
  3.  *
  4.  * file rtp.h
  5.  *
  6.  * brief
  7.  *    Definition of structures and functions to handle RTP headers.  For a
  8.  *    description of RTP see RFC1889 on http://www.ietf.org
  9.  *
  10.  * date
  11.  *    30 September 2001
  12.  *
  13.  * author
  14.  *    Stephan Wenger   stewe@cs.tu-berlin.de
  15.  **************************************************************************/
  16. #ifndef _RTP_H_
  17. #define _RTP_H_
  18. #include "nalu.h"
  19. #define MAXRTPPAYLOADLEN  (65536 - 40)    //!< Maximum payload size of an RTP packet
  20. #define MAXRTPPACKETSIZE  (65536 - 28)    //!< Maximum size of an RTP packet incl. header
  21. #define H264PAYLOADTYPE 105               //!< RTP paylaod type fixed here for simplicity
  22. #define H264SSRC 0x12345678               //!< SSRC, chosen to simplify debugging
  23. #define RTP_TR_TIMESTAMP_MULT 1000        //!< should be something like 27 Mhz / 29.97 Hz
  24. typedef struct
  25. {
  26.   unsigned int v;          //!< Version, 2 bits, MUST be 0x2
  27.   unsigned int p;          //!< Padding bit, Padding MUST NOT be used
  28.   unsigned int x;          //!< Extension, MUST be zero */
  29.   unsigned int cc;         /*!< CSRC count, normally 0 in the absence
  30.                                 of RTP mixers */
  31.   unsigned int m;          //!< Marker bit
  32.   unsigned int pt;         //!< 7 bits, Payload Type, dynamically established
  33.   unsigned int seq;        /*!< RTP sequence number, incremented by one for
  34.                                 each sent packet */
  35.   unsigned int timestamp;  //!< timestamp, 27 MHz for H.264
  36.   unsigned int ssrc;       //!< Synchronization Source, chosen randomly
  37.   byte *       payload;    //!< the payload including payload headers
  38.   unsigned int paylen;     //!< length of payload in bytes
  39.   byte *       packet;     //!< complete packet including header and payload
  40.   unsigned int packlen;    //!< length of packet, typically paylen+12
  41. } RTPpacket_t;
  42. #if 0
  43. int  ComposeRTPPacket (RTPpacket_t *p);
  44. int  DecomposeRTPpacket (RTPpacket_t *p);
  45. int  WriteRTPPacket (RTPpacket_t *p, FILE *f);
  46. void DumpRTPHeader (RTPpacket_t *p);
  47. void RTPUpdateTimestamp (int tr);
  48. int  RTPWriteBits (int Marker, int PacketType, void * bitstream,
  49.                    int BitStreamLenInByte, FILE *out);
  50. Boolean isAggregationPacket(void);
  51. int aggregationRTPWriteBits (int Marker, int PacketType, int subPacketType, void * bitstream, int BitStreamLenInByte, FILE *out);
  52. void begin_sub_sequence_rtp(void);
  53. void end_sub_sequence_rtp(void);
  54. #endif
  55. void RTPUpdateTimestamp (int tr);
  56. void OpenRTPFile (char *Filename);
  57. void CloseRTPFile (void);
  58. int WriteRTPNALU (NALU_t *n);
  59. #endif