rtpdec.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * RTP demuxer definitions
  3. * Copyright (c) 2002 Fabrice Bellard
  4. * Copyright (c) 2006 Ryan Martell <rdm4@martellventures.com>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVFORMAT_RTPDEC_H
  23. #define AVFORMAT_RTPDEC_H
  24. #include "libavcodec/avcodec.h"
  25. #include "avformat.h"
  26. #include "rtp.h"
  27. /** Structure listing useful vars to parse RTP packet payload*/
  28. typedef struct rtp_payload_data
  29. {
  30. int sizelength;
  31. int indexlength;
  32. int indexdeltalength;
  33. int profile_level_id;
  34. int streamtype;
  35. int objecttype;
  36. char *mode;
  37. /** mpeg 4 AU headers */
  38. struct AUHeaders {
  39. int size;
  40. int index;
  41. int cts_flag;
  42. int cts;
  43. int dts_flag;
  44. int dts;
  45. int rap_flag;
  46. int streamstate;
  47. } *au_headers;
  48. int nb_au_headers;
  49. int au_headers_length_bytes;
  50. int cur_au_index;
  51. } RTPPayloadData;
  52. typedef struct PayloadContext PayloadContext;
  53. typedef struct RTPDynamicProtocolHandler_s RTPDynamicProtocolHandler;
  54. #define RTP_MIN_PACKET_LENGTH 12
  55. #define RTP_MAX_PACKET_LENGTH 1500 /* XXX: suppress this define */
  56. typedef struct RTPDemuxContext RTPDemuxContext;
  57. RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, RTPPayloadData *rtp_payload_data);
  58. void rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx,
  59. RTPDynamicProtocolHandler *handler);
  60. int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
  61. const uint8_t *buf, int len);
  62. void rtp_parse_close(RTPDemuxContext *s);
  63. int rtp_get_local_port(URLContext *h);
  64. int rtp_set_remote_url(URLContext *h, const char *uri);
  65. void rtp_get_file_handles(URLContext *h, int *prtp_fd, int *prtcp_fd);
  66. /**
  67. * some rtp servers assume client is dead if they don't hear from them...
  68. * so we send a Receiver Report to the provided ByteIO context
  69. * (we don't have access to the rtcp handle from here)
  70. */
  71. int rtp_check_and_send_back_rr(RTPDemuxContext *s, int count);
  72. // these statistics are used for rtcp receiver reports...
  73. typedef struct {
  74. uint16_t max_seq; ///< highest sequence number seen
  75. uint32_t cycles; ///< shifted count of sequence number cycles
  76. uint32_t base_seq; ///< base sequence number
  77. uint32_t bad_seq; ///< last bad sequence number + 1
  78. int probation; ///< sequence packets till source is valid
  79. int received; ///< packets received
  80. int expected_prior; ///< packets expected in last interval
  81. int received_prior; ///< packets received in last interval
  82. uint32_t transit; ///< relative transit time for previous packet
  83. uint32_t jitter; ///< estimated jitter.
  84. } RTPStatistics;
  85. #define RTP_FLAG_KEY 0x1 ///< RTP packet contains a keyframe
  86. #define RTP_FLAG_MARKER 0x2 ///< RTP marker bit was set for this packet
  87. /**
  88. * Packet parsing for "private" payloads in the RTP specs.
  89. *
  90. * @param ctx RTSP demuxer context
  91. * @param s stream context
  92. * @param st stream that this packet belongs to
  93. * @param pkt packet in which to write the parsed data
  94. * @param timestamp pointer in which to write the timestamp of this RTP packet
  95. * @param buf pointer to raw RTP packet data
  96. * @param len length of buf
  97. * @param flags flags from the RTP packet header (RTP_FLAG_*)
  98. */
  99. typedef int (*DynamicPayloadPacketHandlerProc) (AVFormatContext *ctx,
  100. PayloadContext *s,
  101. AVStream *st,
  102. AVPacket * pkt,
  103. uint32_t *timestamp,
  104. const uint8_t * buf,
  105. int len, int flags);
  106. struct RTPDynamicProtocolHandler_s {
  107. // fields from AVRtpDynamicPayloadType_s
  108. const char enc_name[50]; /* XXX: still why 50 ? ;-) */
  109. enum CodecType codec_type;
  110. enum CodecID codec_id;
  111. // may be null
  112. int (*parse_sdp_a_line) (AVFormatContext *s,
  113. int st_index,
  114. PayloadContext *priv_data,
  115. const char *line); ///< Parse the a= line from the sdp field
  116. PayloadContext *(*open) (); ///< allocate any data needed by the rtp parsing for this dynamic data.
  117. void (*close)(PayloadContext *protocol_data); ///< free any data needed by the rtp parsing for this dynamic data.
  118. DynamicPayloadPacketHandlerProc parse_packet; ///< parse handler for this dynamic packet.
  119. struct RTPDynamicProtocolHandler_s *next;
  120. };
  121. // moved out of rtp.c, because the h264 decoder needs to know about this structure..
  122. struct RTPDemuxContext {
  123. AVFormatContext *ic;
  124. AVStream *st;
  125. int payload_type;
  126. uint32_t ssrc;
  127. uint16_t seq;
  128. uint32_t timestamp;
  129. uint32_t base_timestamp;
  130. uint32_t cur_timestamp;
  131. int max_payload_size;
  132. struct MpegTSContext *ts; /* only used for MP2T payloads */
  133. int read_buf_index;
  134. int read_buf_size;
  135. /* used to send back RTCP RR */
  136. URLContext *rtp_ctx;
  137. char hostname[256];
  138. RTPStatistics statistics; ///< Statistics for this stream (used by RTCP receiver reports)
  139. /* rtcp sender statistics receive */
  140. int64_t last_rtcp_ntp_time; // TODO: move into statistics
  141. int64_t first_rtcp_ntp_time; // TODO: move into statistics
  142. uint32_t last_rtcp_timestamp; // TODO: move into statistics
  143. /* rtcp sender statistics */
  144. unsigned int packet_count; // TODO: move into statistics (outgoing)
  145. unsigned int octet_count; // TODO: move into statistics (outgoing)
  146. unsigned int last_octet_count; // TODO: move into statistics (outgoing)
  147. int first_packet;
  148. /* buffer for output */
  149. uint8_t buf[RTP_MAX_PACKET_LENGTH];
  150. uint8_t *buf_ptr;
  151. /* special infos for au headers parsing */
  152. RTPPayloadData *rtp_payload_data; // TODO: Move into dynamic payload handlers
  153. /* dynamic payload stuff */
  154. DynamicPayloadPacketHandlerProc parse_packet; ///< This is also copied from the dynamic protocol handler structure
  155. PayloadContext *dynamic_protocol_context; ///< This is a copy from the values setup from the sdp parsing, in rtsp.c don't free me.
  156. int max_frames_per_packet;
  157. };
  158. extern RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler;
  159. void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler);
  160. int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size); ///< from rtsp.c, but used by rtp dynamic protocol handlers.
  161. void av_register_rtp_dynamic_payload_handlers(void);
  162. #endif /* AVFORMAT_RTPDEC_H */