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.

185 lines
7.5KB

  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. #define SPACE_CHARS " \t\r\n"
  28. typedef struct PayloadContext PayloadContext;
  29. typedef struct RTPDynamicProtocolHandler_s RTPDynamicProtocolHandler;
  30. #define RTP_MIN_PACKET_LENGTH 12
  31. #define RTP_MAX_PACKET_LENGTH 1500 /* XXX: suppress this define */
  32. #define RTP_NOTS_VALUE ((uint32_t)-1)
  33. typedef struct RTPDemuxContext RTPDemuxContext;
  34. RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type);
  35. void rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx,
  36. RTPDynamicProtocolHandler *handler);
  37. int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
  38. const uint8_t *buf, int len);
  39. void rtp_parse_close(RTPDemuxContext *s);
  40. #if (LIBAVFORMAT_VERSION_MAJOR <= 53)
  41. int rtp_get_local_port(URLContext *h);
  42. #endif
  43. int rtp_get_local_rtp_port(URLContext *h);
  44. int rtp_get_local_rtcp_port(URLContext *h);
  45. int rtp_set_remote_url(URLContext *h, const char *uri);
  46. #if (LIBAVFORMAT_VERSION_MAJOR <= 52)
  47. void rtp_get_file_handles(URLContext *h, int *prtp_fd, int *prtcp_fd);
  48. #endif
  49. /**
  50. * Send a dummy packet on both port pairs to set up the connection
  51. * state in potential NAT routers, so that we're able to receive
  52. * packets.
  53. *
  54. * Note, this only works if the NAT router doesn't remap ports. This
  55. * isn't a standardized procedure, but it works in many cases in practice.
  56. *
  57. * The same routine is used with RDT too, even if RDT doesn't use normal
  58. * RTP packets otherwise.
  59. */
  60. void rtp_send_punch_packets(URLContext* rtp_handle);
  61. /**
  62. * some rtp servers assume client is dead if they don't hear from them...
  63. * so we send a Receiver Report to the provided ByteIO context
  64. * (we don't have access to the rtcp handle from here)
  65. */
  66. int rtp_check_and_send_back_rr(RTPDemuxContext *s, int count);
  67. // these statistics are used for rtcp receiver reports...
  68. typedef struct {
  69. uint16_t max_seq; ///< highest sequence number seen
  70. uint32_t cycles; ///< shifted count of sequence number cycles
  71. uint32_t base_seq; ///< base sequence number
  72. uint32_t bad_seq; ///< last bad sequence number + 1
  73. int probation; ///< sequence packets till source is valid
  74. int received; ///< packets received
  75. int expected_prior; ///< packets expected in last interval
  76. int received_prior; ///< packets received in last interval
  77. uint32_t transit; ///< relative transit time for previous packet
  78. uint32_t jitter; ///< estimated jitter.
  79. } RTPStatistics;
  80. #define RTP_FLAG_KEY 0x1 ///< RTP packet contains a keyframe
  81. #define RTP_FLAG_MARKER 0x2 ///< RTP marker bit was set for this packet
  82. /**
  83. * Packet parsing for "private" payloads in the RTP specs.
  84. *
  85. * @param ctx RTSP demuxer context
  86. * @param s stream context
  87. * @param st stream that this packet belongs to
  88. * @param pkt packet in which to write the parsed data
  89. * @param timestamp pointer in which to write the timestamp of this RTP packet
  90. * @param buf pointer to raw RTP packet data
  91. * @param len length of buf
  92. * @param flags flags from the RTP packet header (RTP_FLAG_*)
  93. */
  94. typedef int (*DynamicPayloadPacketHandlerProc) (AVFormatContext *ctx,
  95. PayloadContext *s,
  96. AVStream *st,
  97. AVPacket * pkt,
  98. uint32_t *timestamp,
  99. const uint8_t * buf,
  100. int len, int flags);
  101. struct RTPDynamicProtocolHandler_s {
  102. // fields from AVRtpDynamicPayloadType_s
  103. const char enc_name[50]; /* XXX: still why 50 ? ;-) */
  104. enum AVMediaType codec_type;
  105. enum CodecID codec_id;
  106. // may be null
  107. int (*parse_sdp_a_line) (AVFormatContext *s,
  108. int st_index,
  109. PayloadContext *priv_data,
  110. const char *line); ///< Parse the a= line from the sdp field
  111. PayloadContext *(*open) (void); ///< allocate any data needed by the rtp parsing for this dynamic data.
  112. void (*close)(PayloadContext *protocol_data); ///< free any data needed by the rtp parsing for this dynamic data.
  113. DynamicPayloadPacketHandlerProc parse_packet; ///< parse handler for this dynamic packet.
  114. struct RTPDynamicProtocolHandler_s *next;
  115. };
  116. // moved out of rtp.c, because the h264 decoder needs to know about this structure..
  117. struct RTPDemuxContext {
  118. AVFormatContext *ic;
  119. AVStream *st;
  120. int payload_type;
  121. uint32_t ssrc;
  122. uint16_t seq;
  123. uint32_t timestamp;
  124. uint32_t base_timestamp;
  125. uint32_t cur_timestamp;
  126. int64_t range_start_offset;
  127. int max_payload_size;
  128. struct MpegTSContext *ts; /* only used for MP2T payloads */
  129. int read_buf_index;
  130. int read_buf_size;
  131. /* used to send back RTCP RR */
  132. URLContext *rtp_ctx;
  133. char hostname[256];
  134. RTPStatistics statistics; ///< Statistics for this stream (used by RTCP receiver reports)
  135. /* rtcp sender statistics receive */
  136. int64_t last_rtcp_ntp_time; // TODO: move into statistics
  137. int64_t first_rtcp_ntp_time; // TODO: move into statistics
  138. uint32_t last_rtcp_timestamp; // TODO: move into statistics
  139. /* rtcp sender statistics */
  140. unsigned int packet_count; // TODO: move into statistics (outgoing)
  141. unsigned int octet_count; // TODO: move into statistics (outgoing)
  142. unsigned int last_octet_count; // TODO: move into statistics (outgoing)
  143. int first_packet;
  144. /* buffer for output */
  145. uint8_t buf[RTP_MAX_PACKET_LENGTH];
  146. uint8_t *buf_ptr;
  147. /* dynamic payload stuff */
  148. DynamicPayloadPacketHandlerProc parse_packet; ///< This is also copied from the dynamic protocol handler structure
  149. PayloadContext *dynamic_protocol_context; ///< This is a copy from the values setup from the sdp parsing, in rtsp.c don't free me.
  150. int max_frames_per_packet;
  151. };
  152. extern RTPDynamicProtocolHandler *RTPFirstDynamicPayloadHandler;
  153. void ff_register_dynamic_payload_handler(RTPDynamicProtocolHandler *handler);
  154. int ff_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.
  155. int ff_parse_fmtp(AVStream *stream, PayloadContext *data, const char *p,
  156. int (*parse_fmtp)(AVStream *stream,
  157. PayloadContext *data,
  158. char *attr, char *value));
  159. void av_register_rtp_dynamic_payload_handlers(void);
  160. #endif /* AVFORMAT_RTPDEC_H */