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.

215 lines
8.3KB

  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. #include "url.h"
  28. typedef struct PayloadContext PayloadContext;
  29. typedef struct RTPDynamicProtocolHandler RTPDynamicProtocolHandler;
  30. #define RTP_MIN_PACKET_LENGTH 12
  31. #define RTP_MAX_PACKET_LENGTH 1500
  32. #define RTP_REORDER_QUEUE_DEFAULT_SIZE 10
  33. #define RTP_NOTS_VALUE ((uint32_t)-1)
  34. typedef struct RTPDemuxContext RTPDemuxContext;
  35. RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st,
  36. URLContext *rtpc, int payload_type,
  37. int queue_size);
  38. void ff_rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx,
  39. RTPDynamicProtocolHandler *handler);
  40. int ff_rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
  41. uint8_t **buf, int len);
  42. void ff_rtp_parse_close(RTPDemuxContext *s);
  43. int64_t ff_rtp_queued_packet_time(RTPDemuxContext *s);
  44. void ff_rtp_reset_packet_queue(RTPDemuxContext *s);
  45. int ff_rtp_get_local_rtp_port(URLContext *h);
  46. int ff_rtp_get_local_rtcp_port(URLContext *h);
  47. int ff_rtp_set_remote_url(URLContext *h, const char *uri);
  48. /**
  49. * Send a dummy packet on both port pairs to set up the connection
  50. * state in potential NAT routers, so that we're able to receive
  51. * packets.
  52. *
  53. * Note, this only works if the NAT router doesn't remap ports. This
  54. * isn't a standardized procedure, but it works in many cases in practice.
  55. *
  56. * The same routine is used with RDT too, even if RDT doesn't use normal
  57. * RTP packets otherwise.
  58. */
  59. void ff_rtp_send_punch_packets(URLContext* rtp_handle);
  60. /**
  61. * some rtp servers assume client is dead if they don't hear from them...
  62. * so we send a Receiver Report to the provided ByteIO context
  63. * (we don't have access to the rtcp handle from here)
  64. */
  65. int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, int count);
  66. // these statistics are used for rtcp receiver reports...
  67. typedef struct RTPStatistics {
  68. uint16_t max_seq; ///< highest sequence number seen
  69. uint32_t cycles; ///< shifted count of sequence number cycles
  70. uint32_t base_seq; ///< base sequence number
  71. uint32_t bad_seq; ///< last bad sequence number + 1
  72. int probation; ///< sequence packets till source is valid
  73. int received; ///< packets received
  74. int expected_prior; ///< packets expected in last interval
  75. int received_prior; ///< packets received in last interval
  76. uint32_t transit; ///< relative transit time for previous packet
  77. uint32_t jitter; ///< estimated jitter.
  78. } RTPStatistics;
  79. #define RTP_FLAG_KEY 0x1 ///< RTP packet contains a keyframe
  80. #define RTP_FLAG_MARKER 0x2 ///< RTP marker bit was set for this packet
  81. /**
  82. * Packet parsing for "private" payloads in the RTP specs.
  83. *
  84. * @param ctx RTSP demuxer context
  85. * @param s stream context
  86. * @param st stream that this packet belongs to
  87. * @param pkt packet in which to write the parsed data
  88. * @param timestamp pointer to the RTP timestamp of the input data, can be
  89. * updated by the function if returning older, buffered data
  90. * @param buf pointer to raw RTP packet data
  91. * @param len length of buf
  92. * @param seq RTP sequence number of the packet
  93. * @param flags flags from the RTP packet header (RTP_FLAG_*)
  94. */
  95. typedef int (*DynamicPayloadPacketHandlerProc)(AVFormatContext *ctx,
  96. PayloadContext *s,
  97. AVStream *st, AVPacket *pkt,
  98. uint32_t *timestamp,
  99. const uint8_t * buf,
  100. int len, uint16_t seq, int flags);
  101. struct RTPDynamicProtocolHandler {
  102. const char enc_name[50];
  103. enum AVMediaType codec_type;
  104. enum AVCodecID codec_id;
  105. int static_payload_id; /* 0 means no payload id is set. 0 is a valid
  106. * payload ID (PCMU), too, but that format doesn't
  107. * require any custom depacketization code. */
  108. /** Initialize dynamic protocol handler, called after the full rtpmap line is parsed, may be null */
  109. int (*init)(AVFormatContext *s, int st_index, PayloadContext *priv_data);
  110. /** Parse the a= line from the sdp field */
  111. int (*parse_sdp_a_line)(AVFormatContext *s, int st_index,
  112. PayloadContext *priv_data, const char *line);
  113. /** Allocate any data needed by the rtp parsing for this dynamic data. */
  114. PayloadContext *(*alloc)(void);
  115. /** Free any data needed by the rtp parsing for this dynamic data. */
  116. void (*free)(PayloadContext *protocol_data);
  117. /** Parse handler for this dynamic packet */
  118. DynamicPayloadPacketHandlerProc parse_packet;
  119. struct RTPDynamicProtocolHandler *next;
  120. };
  121. typedef struct RTPPacket {
  122. uint16_t seq;
  123. uint8_t *buf;
  124. int len;
  125. int64_t recvtime;
  126. struct RTPPacket *next;
  127. } RTPPacket;
  128. struct RTPDemuxContext {
  129. AVFormatContext *ic;
  130. AVStream *st;
  131. int payload_type;
  132. uint32_t ssrc;
  133. uint16_t seq;
  134. uint32_t timestamp;
  135. uint32_t base_timestamp;
  136. uint32_t cur_timestamp;
  137. int64_t unwrapped_timestamp;
  138. int64_t range_start_offset;
  139. int max_payload_size;
  140. struct MpegTSContext *ts; /* only used for MP2T payloads */
  141. int read_buf_index;
  142. int read_buf_size;
  143. /* used to send back RTCP RR */
  144. URLContext *rtp_ctx;
  145. char hostname[256];
  146. /** Statistics for this stream (used by RTCP receiver reports) */
  147. RTPStatistics statistics;
  148. /** Fields for packet reordering @{ */
  149. int prev_ret; ///< The return value of the actual parsing of the previous packet
  150. RTPPacket* queue; ///< A sorted queue of buffered packets not yet returned
  151. int queue_len; ///< The number of packets in queue
  152. int queue_size; ///< The size of queue, or 0 if reordering is disabled
  153. /*@}*/
  154. /* rtcp sender statistics receive */
  155. int64_t last_rtcp_ntp_time;
  156. int64_t first_rtcp_ntp_time;
  157. uint32_t last_rtcp_timestamp;
  158. int64_t rtcp_ts_offset;
  159. /* rtcp sender statistics */
  160. unsigned int packet_count;
  161. unsigned int octet_count;
  162. unsigned int last_octet_count;
  163. /* buffer for partially parsed packets */
  164. uint8_t buf[RTP_MAX_PACKET_LENGTH];
  165. /* dynamic payload stuff */
  166. DynamicPayloadPacketHandlerProc parse_packet;
  167. PayloadContext *dynamic_protocol_context;
  168. };
  169. void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler);
  170. RTPDynamicProtocolHandler *ff_rtp_handler_find_by_name(const char *name,
  171. enum AVMediaType codec_type);
  172. RTPDynamicProtocolHandler *ff_rtp_handler_find_by_id(int id,
  173. enum AVMediaType codec_type);
  174. /* from rtsp.c, but used by rtp dynamic protocol handlers. */
  175. int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
  176. char *value, int value_size);
  177. int ff_parse_fmtp(AVStream *stream, PayloadContext *data, const char *p,
  178. int (*parse_fmtp)(AVStream *stream,
  179. PayloadContext *data,
  180. char *attr, char *value));
  181. void av_register_rtp_dynamic_payload_handlers(void);
  182. /**
  183. * Close the dynamic buffer and make a packet from it.
  184. */
  185. int ff_rtp_finalize_packet(AVPacket *pkt, AVIOContext **dyn_buf, int stream_idx);
  186. #endif /* AVFORMAT_RTPDEC_H */