FFmpeg  4.4.7
rtsp.c
Go to the documentation of this file.
1 /*
2  * RTSP/SDP client
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/avassert.h"
23 #include "libavutil/base64.h"
24 #include "libavutil/bprint.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/intreadwrite.h"
27 #include "libavutil/mathematics.h"
28 #include "libavutil/parseutils.h"
29 #include "libavutil/random_seed.h"
30 #include "libavutil/dict.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/time.h"
33 #include "avformat.h"
34 #include "avio_internal.h"
35 
36 #if HAVE_POLL_H
37 #include <poll.h>
38 #endif
39 #include "internal.h"
40 #include "network.h"
41 #include "os_support.h"
42 #include "http.h"
43 #include "rtsp.h"
44 
45 #include "rtpdec.h"
46 #include "rtpproto.h"
47 #include "rdt.h"
48 #include "rtpdec_formats.h"
49 #include "rtpenc_chain.h"
50 #include "url.h"
51 #include "rtpenc.h"
52 #include "mpegts.h"
53 
54 /* Default timeout values for read packet in seconds */
55 #define READ_PACKET_TIMEOUT_S 10
56 #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH
57 #define DEFAULT_REORDERING_DELAY 100000
58 
59 #define OFFSET(x) offsetof(RTSPState, x)
60 #define DEC AV_OPT_FLAG_DECODING_PARAM
61 #define ENC AV_OPT_FLAG_ENCODING_PARAM
62 
63 #define RTSP_FLAG_OPTS(name, longname) \
64  { name, longname, OFFSET(rtsp_flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC, "rtsp_flags" }, \
65  { "filter_src", "only receive packets from the negotiated peer IP", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_FILTER_SRC}, 0, 0, DEC, "rtsp_flags" }
66 
67 #define RTSP_MEDIATYPE_OPTS(name, longname) \
68  { name, longname, OFFSET(media_type_mask), AV_OPT_TYPE_FLAGS, { .i64 = (1 << (AVMEDIA_TYPE_SUBTITLE+1)) - 1 }, INT_MIN, INT_MAX, DEC, "allowed_media_types" }, \
69  { "video", "Video", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_VIDEO}, 0, 0, DEC, "allowed_media_types" }, \
70  { "audio", "Audio", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_AUDIO}, 0, 0, DEC, "allowed_media_types" }, \
71  { "data", "Data", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_DATA}, 0, 0, DEC, "allowed_media_types" }, \
72  { "subtitle", "Subtitle", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_SUBTITLE}, 0, 0, DEC, "allowed_media_types" }
73 
74 #define COMMON_OPTS() \
75  { "reorder_queue_size", "set number of packets to buffer for handling of reordered packets", OFFSET(reordering_queue_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC }, \
76  { "buffer_size", "Underlying protocol send/receive buffer size", OFFSET(buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC|ENC }, \
77  { "pkt_size", "Underlying protocol send packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, ENC } \
78 
79 
81  { "initial_pause", "do not start playing the stream immediately", OFFSET(initial_pause), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, DEC },
82  FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
83  { "rtsp_transport", "set RTSP transport protocols", OFFSET(lower_transport_mask), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC|ENC, "rtsp_transport" }, \
84  { "udp", "UDP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
85  { "tcp", "TCP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_TCP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
86  { "udp_multicast", "UDP multicast", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP_MULTICAST}, 0, 0, DEC, "rtsp_transport" },
87  { "http", "HTTP tunneling", 0, AV_OPT_TYPE_CONST, {.i64 = (1 << RTSP_LOWER_TRANSPORT_HTTP)}, 0, 0, DEC, "rtsp_transport" },
88  { "https", "HTTPS tunneling", 0, AV_OPT_TYPE_CONST, {.i64 = (1 << RTSP_LOWER_TRANSPORT_HTTPS )}, 0, 0, DEC, "rtsp_transport" },
89  RTSP_FLAG_OPTS("rtsp_flags", "set RTSP flags"),
90  { "listen", "wait for incoming connections", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_LISTEN}, 0, 0, DEC, "rtsp_flags" },
91  { "prefer_tcp", "try RTP via TCP first, if available", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_PREFER_TCP}, 0, 0, DEC|ENC, "rtsp_flags" },
92  { "satip_raw", "export raw MPEG-TS stream instead of demuxing", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_SATIP_RAW}, 0, 0, DEC, "rtsp_flags" },
93  RTSP_MEDIATYPE_OPTS("allowed_media_types", "set media types to accept from the server"),
94  { "min_port", "set minimum local UDP port", OFFSET(rtp_port_min), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MIN}, 0, 65535, DEC|ENC },
95  { "max_port", "set maximum local UDP port", OFFSET(rtp_port_max), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MAX}, 0, 65535, DEC|ENC },
96  { "listen_timeout", "set maximum timeout (in seconds) to wait for incoming connections (-1 is infinite, imply flag listen)", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX, DEC },
97 #if FF_API_OLD_RTSP_OPTIONS
98  { "timeout", "set maximum timeout (in seconds) to wait for incoming connections (-1 is infinite, imply flag listen) (deprecated, use listen_timeout)", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX, DEC|AV_OPT_FLAG_DEPRECATED },
99  { "stimeout", "set timeout (in microseconds) of socket TCP I/O operations", OFFSET(stimeout), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC },
100 #else
101  { "timeout", "set timeout (in microseconds) of socket TCP I/O operations", OFFSET(stimeout), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC },
102 #endif
103  COMMON_OPTS(),
104  { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = LIBAVFORMAT_IDENT}, 0, 0, DEC },
105 #if FF_API_OLD_RTSP_OPTIONS
106  { "user-agent", "override User-Agent header (deprecated, use user_agent)", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = LIBAVFORMAT_IDENT}, 0, 0, DEC|AV_OPT_FLAG_DEPRECATED },
107 #endif
108  { NULL },
109 };
110 
111 static const AVOption sdp_options[] = {
112  RTSP_FLAG_OPTS("sdp_flags", "SDP flags"),
113  { "custom_io", "use custom I/O", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_CUSTOM_IO}, 0, 0, DEC, "rtsp_flags" },
114  { "rtcp_to_source", "send RTCP packets to the source address of received packets", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_RTCP_TO_SOURCE}, 0, 0, DEC, "rtsp_flags" },
115  { "listen_timeout", "set maximum timeout (in seconds) to wait for incoming connections", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = READ_PACKET_TIMEOUT_S}, INT_MIN, INT_MAX, DEC },
116  RTSP_MEDIATYPE_OPTS("allowed_media_types", "set media types to accept from the server"),
117  COMMON_OPTS(),
118  { NULL },
119 };
120 
121 static const AVOption rtp_options[] = {
122  RTSP_FLAG_OPTS("rtp_flags", "set RTP flags"),
123  { "listen_timeout", "set maximum timeout (in seconds) to wait for incoming connections", OFFSET(initial_timeout), AV_OPT_TYPE_INT, {.i64 = READ_PACKET_TIMEOUT_S}, INT_MIN, INT_MAX, DEC },
124  RTSP_MEDIATYPE_OPTS("allowed_media_types", "set media types to accept from the server"),
125  COMMON_OPTS(),
126  { NULL },
127 };
128 
129 
131 {
133  char buf[256];
134 
135  snprintf(buf, sizeof(buf), "%d", rt->buffer_size);
136  av_dict_set(&opts, "buffer_size", buf, 0);
137  snprintf(buf, sizeof(buf), "%d", rt->pkt_size);
138  av_dict_set(&opts, "pkt_size", buf, 0);
139 
140  return opts;
141 }
142 
143 static void get_word_until_chars(char *buf, int buf_size,
144  const char *sep, const char **pp)
145 {
146  const char *p;
147  char *q;
148 
149  p = *pp;
150  p += strspn(p, SPACE_CHARS);
151  q = buf;
152  while (!strchr(sep, *p) && *p != '\0') {
153  if ((q - buf) < buf_size - 1)
154  *q++ = *p;
155  p++;
156  }
157  if (buf_size > 0)
158  *q = '\0';
159  *pp = p;
160 }
161 
162 static void get_word_sep(char *buf, int buf_size, const char *sep,
163  const char **pp)
164 {
165  if (**pp == '/') (*pp)++;
166  get_word_until_chars(buf, buf_size, sep, pp);
167 }
168 
169 static void get_word(char *buf, int buf_size, const char **pp)
170 {
171  get_word_until_chars(buf, buf_size, SPACE_CHARS, pp);
172 }
173 
174 /** Parse a string p in the form of Range:npt=xx-xx, and determine the start
175  * and end time.
176  * Used for seeking in the rtp stream.
177  */
178 static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
179 {
180  char buf[256];
181 
182  p += strspn(p, SPACE_CHARS);
183  if (!av_stristart(p, "npt=", &p))
184  return;
185 
186  *start = AV_NOPTS_VALUE;
187  *end = AV_NOPTS_VALUE;
188 
189  get_word_sep(buf, sizeof(buf), "-", &p);
190  if (av_parse_time(start, buf, 1) < 0)
191  return;
192  if (*p == '-') {
193  p++;
194  get_word_sep(buf, sizeof(buf), "-", &p);
195  if (av_parse_time(end, buf, 1) < 0)
196  av_log(NULL, AV_LOG_DEBUG, "Failed to parse interval end specification '%s'\n", buf);
197  }
198 }
199 
201  const char *buf, struct sockaddr_storage *sock)
202 {
203  struct addrinfo hints = { 0 }, *ai = NULL;
204  int ret;
205 
206  hints.ai_flags = AI_NUMERICHOST;
207  if ((ret = getaddrinfo(buf, NULL, &hints, &ai))) {
208  av_log(s, AV_LOG_ERROR, "getaddrinfo(%s): %s\n",
209  buf,
210  gai_strerror(ret));
211  return -1;
212  }
213  memcpy(sock, ai->ai_addr, FFMIN(sizeof(*sock), ai->ai_addrlen));
214  freeaddrinfo(ai);
215  return 0;
216 }
217 
218 #if CONFIG_RTPDEC
219 static void init_rtp_handler(const RTPDynamicProtocolHandler *handler,
220  RTSPStream *rtsp_st, AVStream *st)
221 {
222  AVCodecParameters *par = st ? st->codecpar : NULL;
223  if (!handler)
224  return;
225  if (par)
226  par->codec_id = handler->codec_id;
227  rtsp_st->dynamic_handler = handler;
228  if (st)
229  st->need_parsing = handler->need_parsing;
230  if (handler->priv_data_size) {
231  rtsp_st->dynamic_protocol_context = av_mallocz(handler->priv_data_size);
232  if (!rtsp_st->dynamic_protocol_context)
233  rtsp_st->dynamic_handler = NULL;
234  }
235 }
236 
237 static void finalize_rtp_handler_init(AVFormatContext *s, RTSPStream *rtsp_st,
238  AVStream *st)
239 {
240  if (rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->init) {
241  int ret = rtsp_st->dynamic_handler->init(s, st ? st->index : -1,
242  rtsp_st->dynamic_protocol_context);
243  if (ret < 0) {
244  if (rtsp_st->dynamic_protocol_context) {
245  if (rtsp_st->dynamic_handler->close)
246  rtsp_st->dynamic_handler->close(
247  rtsp_st->dynamic_protocol_context);
249  }
250  rtsp_st->dynamic_protocol_context = NULL;
251  rtsp_st->dynamic_handler = NULL;
252  }
253  }
254 }
255 
256 static int init_satip_stream(AVFormatContext *s)
257 {
258  RTSPState *rt = s->priv_data;
259  RTSPStream *rtsp_st = av_mallocz(sizeof(RTSPStream));
260  if (!rtsp_st)
261  return AVERROR(ENOMEM);
263  &rt->nb_rtsp_streams, rtsp_st);
264 
265  rtsp_st->sdp_payload_type = 33; // MP2T
266  av_strlcpy(rtsp_st->control_url,
267  rt->control_uri, sizeof(rtsp_st->control_url));
268 
269  if (rt->rtsp_flags & RTSP_FLAG_SATIP_RAW) {
271  if (!st)
272  return AVERROR(ENOMEM);
273  st->id = rt->nb_rtsp_streams - 1;
274  rtsp_st->stream_index = st->index;
277  } else {
278  rtsp_st->stream_index = -1;
279  init_rtp_handler(&ff_mpegts_dynamic_handler, rtsp_st, NULL);
280  finalize_rtp_handler_init(s, rtsp_st, NULL);
281  }
282  return 0;
283 }
284 
285 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other params>] */
286 static int sdp_parse_rtpmap(AVFormatContext *s,
287  AVStream *st, RTSPStream *rtsp_st,
288  int payload_type, const char *p)
289 {
290  AVCodecParameters *par = st->codecpar;
291  char buf[256];
292  int i;
293  const AVCodecDescriptor *desc;
294  const char *c_name;
295 
296  /* See if we can handle this kind of payload.
297  * The space should normally not be there but some Real streams or
298  * particular servers ("RealServer Version 6.1.3.970", see issue 1658)
299  * have a trailing space. */
300  get_word_sep(buf, sizeof(buf), "/ ", &p);
301  if (payload_type < RTP_PT_PRIVATE) {
302  /* We are in a standard case
303  * (from http://www.iana.org/assignments/rtp-parameters). */
304  par->codec_id = ff_rtp_codec_id(buf, par->codec_type);
305  }
306 
307  if (par->codec_id == AV_CODEC_ID_NONE) {
310  init_rtp_handler(handler, rtsp_st, st);
311  /* If no dynamic handler was found, check with the list of standard
312  * allocated types, if such a stream for some reason happens to
313  * use a private payload type. This isn't handled in rtpdec.c, since
314  * the format name from the rtpmap line never is passed into rtpdec. */
315  if (!rtsp_st->dynamic_handler)
316  par->codec_id = ff_rtp_codec_id(buf, par->codec_type);
317  }
318 
320  if (desc && desc->name)
321  c_name = desc->name;
322  else
323  c_name = "(null)";
324 
325  get_word_sep(buf, sizeof(buf), "/", &p);
326  i = atoi(buf);
327  switch (par->codec_type) {
328  case AVMEDIA_TYPE_AUDIO:
329  av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name);
332  if (i > 0) {
333  par->sample_rate = i;
334  avpriv_set_pts_info(st, 32, 1, par->sample_rate);
335  get_word_sep(buf, sizeof(buf), "/", &p);
336  i = atoi(buf);
337  if (i > 0)
338  par->channels = i;
339  }
340  av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n",
341  par->sample_rate);
342  av_log(s, AV_LOG_DEBUG, "audio channels set to: %i\n",
343  par->channels);
344  break;
345  case AVMEDIA_TYPE_VIDEO:
346  av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name);
347  if (i > 0)
348  avpriv_set_pts_info(st, 32, 1, i);
349  break;
350  default:
351  break;
352  }
353  finalize_rtp_handler_init(s, rtsp_st, st);
354  return 0;
355 }
356 
357 /* parse the attribute line from the fmtp a line of an sdp response. This
358  * is broken out as a function because it is used in rtp_h264.c, which is
359  * forthcoming. */
360 int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
361  char *value, int value_size)
362 {
363  *p += strspn(*p, SPACE_CHARS);
364  if (**p) {
365  get_word_sep(attr, attr_size, "=", p);
366  if (**p == '=')
367  (*p)++;
368  get_word_sep(value, value_size, ";", p);
369  if (**p == ';')
370  (*p)++;
371  return 1;
372  }
373  return 0;
374 }
375 
376 typedef struct SDPParseState {
377  /* SDP only */
378  struct sockaddr_storage default_ip;
379  int default_ttl;
380  int skip_media; ///< set if an unknown m= line occurs
381  int nb_default_include_source_addrs; /**< Number of source-specific multicast include source IP address (from SDP content) */
382  struct RTSPSource **default_include_source_addrs; /**< Source-specific multicast include source IP address (from SDP content) */
383  int nb_default_exclude_source_addrs; /**< Number of source-specific multicast exclude source IP address (from SDP content) */
384  struct RTSPSource **default_exclude_source_addrs; /**< Source-specific multicast exclude source IP address (from SDP content) */
385  int seen_rtpmap;
386  int seen_fmtp;
387  char delayed_fmtp[2048];
388 } SDPParseState;
389 
390 static void copy_default_source_addrs(struct RTSPSource **addrs, int count,
391  struct RTSPSource ***dest, int *dest_count)
392 {
393  RTSPSource *rtsp_src, *rtsp_src2;
394  int i;
395  for (i = 0; i < count; i++) {
396  rtsp_src = addrs[i];
397  rtsp_src2 = av_malloc(sizeof(*rtsp_src2));
398  if (!rtsp_src2)
399  continue;
400  memcpy(rtsp_src2, rtsp_src, sizeof(*rtsp_src));
401  dynarray_add(dest, dest_count, rtsp_src2);
402  }
403 }
404 
405 static void parse_fmtp(AVFormatContext *s, RTSPState *rt,
406  int payload_type, const char *line)
407 {
408  int i;
409 
410  for (i = 0; i < rt->nb_rtsp_streams; i++) {
411  RTSPStream *rtsp_st = rt->rtsp_streams[i];
412  if (rtsp_st->sdp_payload_type == payload_type &&
413  rtsp_st->dynamic_handler &&
414  rtsp_st->dynamic_handler->parse_sdp_a_line) {
415  rtsp_st->dynamic_handler->parse_sdp_a_line(s, rtsp_st->stream_index,
416  rtsp_st->dynamic_protocol_context, line);
417  }
418  }
419 }
420 
421 static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
422  int letter, const char *buf)
423 {
424  RTSPState *rt = s->priv_data;
425  char buf1[64], st_type[64];
426  const char *p;
427  enum AVMediaType codec_type;
428  int payload_type;
429  AVStream *st;
430  RTSPStream *rtsp_st;
431  RTSPSource *rtsp_src;
432  struct sockaddr_storage sdp_ip;
433  int ttl;
434 
435  av_log(s, AV_LOG_TRACE, "sdp: %c='%s'\n", letter, buf);
436 
437  p = buf;
438  if (s1->skip_media && letter != 'm')
439  return;
440  switch (letter) {
441  case 'c':
442  get_word(buf1, sizeof(buf1), &p);
443  if (strcmp(buf1, "IN") != 0)
444  return;
445  get_word(buf1, sizeof(buf1), &p);
446  if (strcmp(buf1, "IP4") && strcmp(buf1, "IP6"))
447  return;
448  get_word_sep(buf1, sizeof(buf1), "/", &p);
449  if (get_sockaddr(s, buf1, &sdp_ip))
450  return;
451  ttl = 16;
452  if (*p == '/') {
453  p++;
454  get_word_sep(buf1, sizeof(buf1), "/", &p);
455  ttl = atoi(buf1);
456  }
457  if (s->nb_streams == 0) {
458  s1->default_ip = sdp_ip;
459  s1->default_ttl = ttl;
460  } else {
461  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
462  rtsp_st->sdp_ip = sdp_ip;
463  rtsp_st->sdp_ttl = ttl;
464  }
465  break;
466  case 's':
467  av_dict_set(&s->metadata, "title", p, 0);
468  break;
469  case 'i':
470  if (s->nb_streams == 0) {
471  av_dict_set(&s->metadata, "comment", p, 0);
472  break;
473  }
474  break;
475  case 'm':
476  /* new stream */
477  s1->skip_media = 0;
478  s1->seen_fmtp = 0;
479  s1->seen_rtpmap = 0;
481  get_word(st_type, sizeof(st_type), &p);
482  if (!strcmp(st_type, "audio")) {
484  } else if (!strcmp(st_type, "video")) {
486  } else if (!strcmp(st_type, "application")) {
488  } else if (!strcmp(st_type, "text")) {
490  }
492  !(rt->media_type_mask & (1 << codec_type)) ||
493  rt->nb_rtsp_streams >= s->max_streams
494  ) {
495  s1->skip_media = 1;
496  return;
497  }
498  rtsp_st = av_mallocz(sizeof(RTSPStream));
499  if (!rtsp_st)
500  return;
501  rtsp_st->stream_index = -1;
502  dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
503 
504  rtsp_st->sdp_ip = s1->default_ip;
505  rtsp_st->sdp_ttl = s1->default_ttl;
506 
507  copy_default_source_addrs(s1->default_include_source_addrs,
508  s1->nb_default_include_source_addrs,
509  &rtsp_st->include_source_addrs,
510  &rtsp_st->nb_include_source_addrs);
511  copy_default_source_addrs(s1->default_exclude_source_addrs,
512  s1->nb_default_exclude_source_addrs,
513  &rtsp_st->exclude_source_addrs,
514  &rtsp_st->nb_exclude_source_addrs);
515 
516  get_word(buf1, sizeof(buf1), &p); /* port */
517  rtsp_st->sdp_port = atoi(buf1);
518 
519  get_word(buf1, sizeof(buf1), &p); /* protocol */
520  if (!strcmp(buf1, "udp"))
522  else if (strstr(buf1, "/AVPF") || strstr(buf1, "/SAVPF"))
523  rtsp_st->feedback = 1;
524 
525  /* XXX: handle list of formats */
526  get_word(buf1, sizeof(buf1), &p); /* format list */
527  rtsp_st->sdp_payload_type = atoi(buf1);
528 
529  if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) {
530  /* no corresponding stream */
531  if (rt->transport == RTSP_TRANSPORT_RAW) {
532  if (CONFIG_RTPDEC && !rt->ts)
534  } else {
538  init_rtp_handler(handler, rtsp_st, NULL);
539  finalize_rtp_handler_init(s, rtsp_st, NULL);
540  }
541  } else if (rt->server_type == RTSP_SERVER_WMS &&
543  /* RTX stream, a stream that carries all the other actual
544  * audio/video streams. Don't expose this to the callers. */
545  } else {
546  st = avformat_new_stream(s, NULL);
547  if (!st)
548  return;
549  st->id = rt->nb_rtsp_streams - 1;
550  rtsp_st->stream_index = st->index;
552  if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
554  /* if standard payload type, we can find the codec right now */
556  if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
557  st->codecpar->sample_rate > 0)
558  avpriv_set_pts_info(st, 32, 1, st->codecpar->sample_rate);
559  /* Even static payload types may need a custom depacketizer */
561  rtsp_st->sdp_payload_type, st->codecpar->codec_type);
562  init_rtp_handler(handler, rtsp_st, st);
563  finalize_rtp_handler_init(s, rtsp_st, st);
564  }
565  if (rt->default_lang[0])
566  av_dict_set(&st->metadata, "language", rt->default_lang, 0);
567  }
568  /* put a default control url */
569  av_strlcpy(rtsp_st->control_url, rt->control_uri,
570  sizeof(rtsp_st->control_url));
571  break;
572  case 'a':
573  if (av_strstart(p, "control:", &p)) {
574  if (rt->nb_rtsp_streams == 0) {
575  if (!strncmp(p, "rtsp://", 7))
576  av_strlcpy(rt->control_uri, p,
577  sizeof(rt->control_uri));
578  } else {
579  char proto[32];
580  /* get the control url */
581  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
582 
583  /* XXX: may need to add full url resolution */
584  av_url_split(proto, sizeof(proto), NULL, 0, NULL, 0,
585  NULL, NULL, 0, p);
586  if (proto[0] == '\0') {
587  /* relative control URL */
588  size_t len = strlen(rtsp_st->control_url);
589  if (len == 0 || rtsp_st->control_url[len - 1] != '/')
590  av_strlcat(rtsp_st->control_url, "/",
591  sizeof(rtsp_st->control_url));
592  av_strlcat(rtsp_st->control_url, p,
593  sizeof(rtsp_st->control_url));
594  } else
595  av_strlcpy(rtsp_st->control_url, p,
596  sizeof(rtsp_st->control_url));
597  }
598  } else if (av_strstart(p, "rtpmap:", &p) && s->nb_streams > 0) {
599  /* NOTE: rtpmap is only supported AFTER the 'm=' tag */
600  get_word(buf1, sizeof(buf1), &p);
601  payload_type = atoi(buf1);
602  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
603  if (rtsp_st->stream_index >= 0) {
604  st = s->streams[rtsp_st->stream_index];
605  sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
606  }
607  s1->seen_rtpmap = 1;
608  if (s1->seen_fmtp) {
609  parse_fmtp(s, rt, payload_type, s1->delayed_fmtp);
610  }
611  } else if (av_strstart(p, "fmtp:", &p) ||
612  av_strstart(p, "framesize:", &p)) {
613  // let dynamic protocol handlers have a stab at the line.
614  get_word(buf1, sizeof(buf1), &p);
615  payload_type = atoi(buf1);
616  if (s1->seen_rtpmap) {
617  parse_fmtp(s, rt, payload_type, buf);
618  } else {
619  s1->seen_fmtp = 1;
620  av_strlcpy(s1->delayed_fmtp, buf, sizeof(s1->delayed_fmtp));
621  }
622  } else if (av_strstart(p, "ssrc:", &p) && s->nb_streams > 0) {
623  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
624  get_word(buf1, sizeof(buf1), &p);
625  rtsp_st->ssrc = strtoll(buf1, NULL, 10);
626  } else if (av_strstart(p, "range:", &p)) {
627  int64_t start, end;
628 
629  // this is so that seeking on a streamed file can work.
630  rtsp_parse_range_npt(p, &start, &end);
631  s->start_time = start;
632  /* AV_NOPTS_VALUE means live broadcast (and can't seek) */
633  s->duration = (end == AV_NOPTS_VALUE) ?
634  AV_NOPTS_VALUE : end - start;
635  } else if (av_strstart(p, "lang:", &p)) {
636  if (s->nb_streams > 0) {
637  get_word(buf1, sizeof(buf1), &p);
638  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
639  if (rtsp_st->stream_index >= 0) {
640  st = s->streams[rtsp_st->stream_index];
641  av_dict_set(&st->metadata, "language", buf1, 0);
642  }
643  } else
644  get_word(rt->default_lang, sizeof(rt->default_lang), &p);
645  } else if (av_strstart(p, "IsRealDataType:integer;",&p)) {
646  if (atoi(p) == 1)
648  } else if (av_strstart(p, "SampleRate:integer;", &p) &&
649  s->nb_streams > 0) {
650  st = s->streams[s->nb_streams - 1];
651  st->codecpar->sample_rate = atoi(p);
652  } else if (av_strstart(p, "crypto:", &p) && s->nb_streams > 0) {
653  // RFC 4568
654  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
655  get_word(buf1, sizeof(buf1), &p); // ignore tag
656  get_word(rtsp_st->crypto_suite, sizeof(rtsp_st->crypto_suite), &p);
657  p += strspn(p, SPACE_CHARS);
658  if (av_strstart(p, "inline:", &p))
659  get_word(rtsp_st->crypto_params, sizeof(rtsp_st->crypto_params), &p);
660  } else if (av_strstart(p, "source-filter:", &p)) {
661  int exclude = 0;
662  get_word(buf1, sizeof(buf1), &p);
663  if (strcmp(buf1, "incl") && strcmp(buf1, "excl"))
664  return;
665  exclude = !strcmp(buf1, "excl");
666 
667  get_word(buf1, sizeof(buf1), &p);
668  if (strcmp(buf1, "IN") != 0)
669  return;
670  get_word(buf1, sizeof(buf1), &p);
671  if (strcmp(buf1, "IP4") && strcmp(buf1, "IP6") && strcmp(buf1, "*"))
672  return;
673  // not checking that the destination address actually matches or is wildcard
674  get_word(buf1, sizeof(buf1), &p);
675 
676  while (*p != '\0') {
677  rtsp_src = av_mallocz(sizeof(*rtsp_src));
678  if (!rtsp_src)
679  return;
680  get_word(rtsp_src->addr, sizeof(rtsp_src->addr), &p);
681  if (exclude) {
682  if (s->nb_streams == 0) {
683  dynarray_add(&s1->default_exclude_source_addrs, &s1->nb_default_exclude_source_addrs, rtsp_src);
684  } else {
685  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
686  dynarray_add(&rtsp_st->exclude_source_addrs, &rtsp_st->nb_exclude_source_addrs, rtsp_src);
687  }
688  } else {
689  if (s->nb_streams == 0) {
690  dynarray_add(&s1->default_include_source_addrs, &s1->nb_default_include_source_addrs, rtsp_src);
691  } else {
692  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
693  dynarray_add(&rtsp_st->include_source_addrs, &rtsp_st->nb_include_source_addrs, rtsp_src);
694  }
695  }
696  }
697  } else {
698  if (rt->server_type == RTSP_SERVER_WMS)
700  if (s->nb_streams > 0) {
701  rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
702 
703  if (rt->server_type == RTSP_SERVER_REAL)
705 
706  if (rtsp_st->dynamic_handler &&
709  rtsp_st->stream_index,
710  rtsp_st->dynamic_protocol_context, buf);
711  }
712  }
713  break;
714  }
715 }
716 
717 int ff_sdp_parse(AVFormatContext *s, const char *content)
718 {
719  const char *p;
720  int letter, i;
721  char buf[SDP_MAX_SIZE], *q;
722  SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state;
723 
724  p = content;
725  for (;;) {
726  p += strspn(p, SPACE_CHARS);
727  letter = *p;
728  if (letter == '\0')
729  break;
730  p++;
731  if (*p != '=')
732  goto next_line;
733  p++;
734  /* get the content */
735  q = buf;
736  while (*p != '\n' && *p != '\r' && *p != '\0') {
737  if ((q - buf) < sizeof(buf) - 1)
738  *q++ = *p;
739  p++;
740  }
741  *q = '\0';
742  sdp_parse_line(s, s1, letter, buf);
743  next_line:
744  while (*p != '\n' && *p != '\0')
745  p++;
746  if (*p == '\n')
747  p++;
748  }
749 
750  for (i = 0; i < s1->nb_default_include_source_addrs; i++)
751  av_freep(&s1->default_include_source_addrs[i]);
752  av_freep(&s1->default_include_source_addrs);
753  for (i = 0; i < s1->nb_default_exclude_source_addrs; i++)
754  av_freep(&s1->default_exclude_source_addrs[i]);
755  av_freep(&s1->default_exclude_source_addrs);
756 
757  return 0;
758 }
759 #endif /* CONFIG_RTPDEC */
760 
761 void ff_rtsp_undo_setup(AVFormatContext *s, int send_packets)
762 {
763  RTSPState *rt = s->priv_data;
764  int i;
765 
766  for (i = 0; i < rt->nb_rtsp_streams; i++) {
767  RTSPStream *rtsp_st = rt->rtsp_streams[i];
768  if (!rtsp_st)
769  continue;
770  if (rtsp_st->transport_priv) {
771  if (s->oformat) {
772  AVFormatContext *rtpctx = rtsp_st->transport_priv;
773  av_write_trailer(rtpctx);
775  if (CONFIG_RTSP_MUXER && rtpctx->pb && send_packets)
776  ff_rtsp_tcp_write_packet(s, rtsp_st);
777  ffio_free_dyn_buf(&rtpctx->pb);
778  } else {
779  avio_closep(&rtpctx->pb);
780  }
781  avformat_free_context(rtpctx);
782  } else if (CONFIG_RTPDEC && rt->transport == RTSP_TRANSPORT_RDT)
784  else if (CONFIG_RTPDEC && rt->transport == RTSP_TRANSPORT_RTP)
786  }
787  rtsp_st->transport_priv = NULL;
788  ffurl_closep(&rtsp_st->rtp_handle);
789  }
790 }
791 
792 /* close and free RTSP streams */
794 {
795  RTSPState *rt = s->priv_data;
796  int i, j;
797  RTSPStream *rtsp_st;
798 
799  ff_rtsp_undo_setup(s, 0);
800  for (i = 0; i < rt->nb_rtsp_streams; i++) {
801  rtsp_st = rt->rtsp_streams[i];
802  if (rtsp_st) {
803  if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context) {
804  if (rtsp_st->dynamic_handler->close)
805  rtsp_st->dynamic_handler->close(
806  rtsp_st->dynamic_protocol_context);
808  }
809  for (j = 0; j < rtsp_st->nb_include_source_addrs; j++)
810  av_freep(&rtsp_st->include_source_addrs[j]);
811  av_freep(&rtsp_st->include_source_addrs);
812  for (j = 0; j < rtsp_st->nb_exclude_source_addrs; j++)
813  av_freep(&rtsp_st->exclude_source_addrs[j]);
814  av_freep(&rtsp_st->exclude_source_addrs);
815 
816  av_freep(&rtsp_st);
817  }
818  }
819  av_freep(&rt->rtsp_streams);
820  if (rt->asf_ctx) {
822  }
823  if (CONFIG_RTPDEC && rt->ts)
825  av_freep(&rt->p);
826  av_freep(&rt->recvbuf);
827 }
828 
830 {
831  RTSPState *rt = s->priv_data;
832  AVStream *st = NULL;
833  int reordering_queue_size = rt->reordering_queue_size;
834  if (reordering_queue_size < 0) {
835  if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP || !s->max_delay)
836  reordering_queue_size = 0;
837  else
838  reordering_queue_size = RTP_REORDER_QUEUE_DEFAULT_SIZE;
839  }
840 
841  /* open the RTP context */
842  if (rtsp_st->stream_index >= 0)
843  st = s->streams[rtsp_st->stream_index];
844  if (!st)
845  s->ctx_flags |= AVFMTCTX_NOHEADER;
846 
847  if (CONFIG_RTSP_MUXER && s->oformat && st) {
848  int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv,
849  s, st, rtsp_st->rtp_handle,
851  rtsp_st->stream_index);
852  /* Ownership of rtp_handle is passed to the rtp mux context */
853  rtsp_st->rtp_handle = NULL;
854  if (ret < 0)
855  return ret;
856  st->time_base = ((AVFormatContext*)rtsp_st->transport_priv)->streams[0]->time_base;
857  } else if (rt->transport == RTSP_TRANSPORT_RAW) {
858  return 0; // Don't need to open any parser here
859  } else if (CONFIG_RTPDEC && rt->transport == RTSP_TRANSPORT_RDT && st)
860  rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index,
861  rtsp_st->dynamic_protocol_context,
862  rtsp_st->dynamic_handler);
863  else if (CONFIG_RTPDEC)
864  rtsp_st->transport_priv = ff_rtp_parse_open(s, st,
865  rtsp_st->sdp_payload_type,
866  reordering_queue_size);
867 
868  if (!rtsp_st->transport_priv) {
869  return AVERROR(ENOMEM);
870  } else if (CONFIG_RTPDEC && rt->transport == RTSP_TRANSPORT_RTP &&
871  s->iformat) {
872  RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
873  rtpctx->ssrc = rtsp_st->ssrc;
874  if (rtsp_st->dynamic_handler) {
876  rtsp_st->dynamic_protocol_context,
877  rtsp_st->dynamic_handler);
878  }
879  if (rtsp_st->crypto_suite[0])
881  rtsp_st->crypto_suite,
882  rtsp_st->crypto_params);
883  }
884 
885  return 0;
886 }
887 
888 #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
889 static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
890 {
891  const char *q;
892  char *p;
893  int v;
894 
895  q = *pp;
896  q += strspn(q, SPACE_CHARS);
897  v = strtol(q, &p, 10);
898  if (*p == '-') {
899  p++;
900  *min_ptr = v;
901  v = strtol(p, &p, 10);
902  *max_ptr = v;
903  } else {
904  *min_ptr = v;
905  *max_ptr = v;
906  }
907  *pp = p;
908 }
909 
910 /* XXX: only one transport specification is parsed */
911 static void rtsp_parse_transport(AVFormatContext *s,
912  RTSPMessageHeader *reply, const char *p)
913 {
914  char transport_protocol[16];
915  char profile[16];
916  char lower_transport[16];
917  char parameter[16];
919  char buf[256];
920 
921  reply->nb_transports = 0;
922 
923  for (;;) {
924  p += strspn(p, SPACE_CHARS);
925  if (*p == '\0')
926  break;
927 
928  th = &reply->transports[reply->nb_transports];
929 
930  get_word_sep(transport_protocol, sizeof(transport_protocol),
931  "/", &p);
932  if (!av_strcasecmp (transport_protocol, "rtp")) {
933  get_word_sep(profile, sizeof(profile), "/;,", &p);
934  lower_transport[0] = '\0';
935  /* rtp/avp/<protocol> */
936  if (*p == '/') {
937  get_word_sep(lower_transport, sizeof(lower_transport),
938  ";,", &p);
939  }
940  th->transport = RTSP_TRANSPORT_RTP;
941  } else if (!av_strcasecmp (transport_protocol, "x-pn-tng") ||
942  !av_strcasecmp (transport_protocol, "x-real-rdt")) {
943  /* x-pn-tng/<protocol> */
944  get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p);
945  profile[0] = '\0';
946  th->transport = RTSP_TRANSPORT_RDT;
947  } else if (!av_strcasecmp(transport_protocol, "raw")) {
948  get_word_sep(profile, sizeof(profile), "/;,", &p);
949  lower_transport[0] = '\0';
950  /* raw/raw/<protocol> */
951  if (*p == '/') {
952  get_word_sep(lower_transport, sizeof(lower_transport),
953  ";,", &p);
954  }
955  th->transport = RTSP_TRANSPORT_RAW;
956  } else {
957  break;
958  }
959  if (!av_strcasecmp(lower_transport, "TCP"))
960  th->lower_transport = RTSP_LOWER_TRANSPORT_TCP;
961  else
962  th->lower_transport = RTSP_LOWER_TRANSPORT_UDP;
963 
964  if (*p == ';')
965  p++;
966  /* get each parameter */
967  while (*p != '\0' && *p != ',') {
968  get_word_sep(parameter, sizeof(parameter), "=;,", &p);
969  if (!strcmp(parameter, "port")) {
970  if (*p == '=') {
971  p++;
972  rtsp_parse_range(&th->port_min, &th->port_max, &p);
973  }
974  } else if (!strcmp(parameter, "client_port")) {
975  if (*p == '=') {
976  p++;
977  rtsp_parse_range(&th->client_port_min,
978  &th->client_port_max, &p);
979  }
980  } else if (!strcmp(parameter, "server_port")) {
981  if (*p == '=') {
982  p++;
983  rtsp_parse_range(&th->server_port_min,
984  &th->server_port_max, &p);
985  }
986  } else if (!strcmp(parameter, "interleaved")) {
987  if (*p == '=') {
988  p++;
989  rtsp_parse_range(&th->interleaved_min,
990  &th->interleaved_max, &p);
991  }
992  } else if (!strcmp(parameter, "multicast")) {
993  if (th->lower_transport == RTSP_LOWER_TRANSPORT_UDP)
994  th->lower_transport = RTSP_LOWER_TRANSPORT_UDP_MULTICAST;
995  } else if (!strcmp(parameter, "ttl")) {
996  if (*p == '=') {
997  char *end;
998  p++;
999  th->ttl = strtol(p, &end, 10);
1000  p = end;
1001  }
1002  } else if (!strcmp(parameter, "destination")) {
1003  if (*p == '=') {
1004  p++;
1005  get_word_sep(buf, sizeof(buf), ";,", &p);
1006  get_sockaddr(s, buf, &th->destination);
1007  }
1008  } else if (!strcmp(parameter, "source")) {
1009  if (*p == '=') {
1010  p++;
1011  get_word_sep(buf, sizeof(buf), ";,", &p);
1012  av_strlcpy(th->source, buf, sizeof(th->source));
1013  }
1014  } else if (!strcmp(parameter, "mode")) {
1015  if (*p == '=') {
1016  p++;
1017  get_word_sep(buf, sizeof(buf), ";, ", &p);
1018  if (!strcmp(buf, "record") ||
1019  !strcmp(buf, "receive"))
1020  th->mode_record = 1;
1021  }
1022  }
1023 
1024  while (*p != ';' && *p != '\0' && *p != ',')
1025  p++;
1026  if (*p == ';')
1027  p++;
1028  }
1029  if (*p == ',')
1030  p++;
1031 
1032  reply->nb_transports++;
1033  if (reply->nb_transports >= RTSP_MAX_TRANSPORTS)
1034  break;
1035  }
1036 }
1037 
1038 static void handle_rtp_info(RTSPState *rt, const char *url,
1039  uint32_t seq, uint32_t rtptime)
1040 {
1041  int i;
1042  if (!rtptime || !url[0])
1043  return;
1044  if (rt->transport != RTSP_TRANSPORT_RTP)
1045  return;
1046  for (i = 0; i < rt->nb_rtsp_streams; i++) {
1047  RTSPStream *rtsp_st = rt->rtsp_streams[i];
1048  RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
1049  if (!rtpctx)
1050  continue;
1051  if (!strcmp(rtsp_st->control_url, url)) {
1052  rtpctx->base_timestamp = rtptime;
1053  break;
1054  }
1055  }
1056 }
1057 
1058 static void rtsp_parse_rtp_info(RTSPState *rt, const char *p)
1059 {
1060  int read = 0;
1061  char key[20], value[MAX_URL_SIZE], url[MAX_URL_SIZE] = "";
1062  uint32_t seq = 0, rtptime = 0;
1063 
1064  for (;;) {
1065  p += strspn(p, SPACE_CHARS);
1066  if (!*p)
1067  break;
1068  get_word_sep(key, sizeof(key), "=", &p);
1069  if (*p != '=')
1070  break;
1071  p++;
1072  get_word_sep(value, sizeof(value), ";, ", &p);
1073  read++;
1074  if (!strcmp(key, "url"))
1075  av_strlcpy(url, value, sizeof(url));
1076  else if (!strcmp(key, "seq"))
1077  seq = strtoul(value, NULL, 10);
1078  else if (!strcmp(key, "rtptime"))
1079  rtptime = strtoul(value, NULL, 10);
1080  if (*p == ',') {
1081  handle_rtp_info(rt, url, seq, rtptime);
1082  url[0] = '\0';
1083  seq = rtptime = 0;
1084  read = 0;
1085  }
1086  if (*p)
1087  p++;
1088  }
1089  if (read > 0)
1090  handle_rtp_info(rt, url, seq, rtptime);
1091 }
1092 
1094  RTSPMessageHeader *reply, const char *buf,
1095  RTSPState *rt, const char *method)
1096 {
1097  const char *p;
1098 
1099  /* NOTE: we do case independent match for broken servers */
1100  p = buf;
1101  if (av_stristart(p, "Session:", &p)) {
1102  int t;
1103  get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p);
1104  if (av_stristart(p, ";timeout=", &p) &&
1105  (t = strtol(p, NULL, 10)) > 0) {
1106  reply->timeout = t;
1107  }
1108  } else if (av_stristart(p, "Content-Length:", &p)) {
1109  reply->content_length = strtol(p, NULL, 10);
1110  } else if (av_stristart(p, "Transport:", &p)) {
1111  rtsp_parse_transport(s, reply, p);
1112  } else if (av_stristart(p, "CSeq:", &p)) {
1113  reply->seq = strtol(p, NULL, 10);
1114  } else if (av_stristart(p, "Range:", &p)) {
1115  rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end);
1116  } else if (av_stristart(p, "RealChallenge1:", &p)) {
1117  p += strspn(p, SPACE_CHARS);
1118  av_strlcpy(reply->real_challenge, p, sizeof(reply->real_challenge));
1119  } else if (av_stristart(p, "Server:", &p)) {
1120  p += strspn(p, SPACE_CHARS);
1121  av_strlcpy(reply->server, p, sizeof(reply->server));
1122  } else if (av_stristart(p, "Notice:", &p) ||
1123  av_stristart(p, "X-Notice:", &p)) {
1124  reply->notice = strtol(p, NULL, 10);
1125  } else if (av_stristart(p, "Location:", &p)) {
1126  p += strspn(p, SPACE_CHARS);
1127  av_strlcpy(reply->location, p , sizeof(reply->location));
1128  } else if (av_stristart(p, "WWW-Authenticate:", &p) && rt) {
1129  p += strspn(p, SPACE_CHARS);
1130  ff_http_auth_handle_header(&rt->auth_state, "WWW-Authenticate", p);
1131  } else if (av_stristart(p, "Authentication-Info:", &p) && rt) {
1132  p += strspn(p, SPACE_CHARS);
1133  ff_http_auth_handle_header(&rt->auth_state, "Authentication-Info", p);
1134  } else if (av_stristart(p, "Content-Base:", &p) && rt) {
1135  p += strspn(p, SPACE_CHARS);
1136  if (method && !strcmp(method, "DESCRIBE"))
1137  av_strlcpy(rt->control_uri, p , sizeof(rt->control_uri));
1138  } else if (av_stristart(p, "RTP-Info:", &p) && rt) {
1139  p += strspn(p, SPACE_CHARS);
1140  if (method && !strcmp(method, "PLAY"))
1141  rtsp_parse_rtp_info(rt, p);
1142  } else if (av_stristart(p, "Public:", &p) && rt) {
1143  if (strstr(p, "GET_PARAMETER") &&
1144  method && !strcmp(method, "OPTIONS"))
1145  rt->get_parameter_supported = 1;
1146  } else if (av_stristart(p, "x-Accept-Dynamic-Rate:", &p) && rt) {
1147  p += strspn(p, SPACE_CHARS);
1148  rt->accept_dynamic_rate = atoi(p);
1149  } else if (av_stristart(p, "Content-Type:", &p)) {
1150  p += strspn(p, SPACE_CHARS);
1151  av_strlcpy(reply->content_type, p, sizeof(reply->content_type));
1152  } else if (av_stristart(p, "com.ses.streamID:", &p)) {
1153  p += strspn(p, SPACE_CHARS);
1154  av_strlcpy(reply->stream_id, p, sizeof(reply->stream_id));
1155  }
1156 }
1157 
1158 /* skip a RTP/TCP interleaved packet */
1160 {
1161  RTSPState *rt = s->priv_data;
1162  int ret, len, len1;
1163  uint8_t buf[MAX_URL_SIZE];
1164 
1165  ret = ffurl_read_complete(rt->rtsp_hd, buf, 3);
1166  if (ret != 3)
1167  return;
1168  len = AV_RB16(buf + 1);
1169 
1170  av_log(s, AV_LOG_TRACE, "skipping RTP packet len=%d\n", len);
1171 
1172  /* skip payload */
1173  while (len > 0) {
1174  len1 = len;
1175  if (len1 > sizeof(buf))
1176  len1 = sizeof(buf);
1177  ret = ffurl_read_complete(rt->rtsp_hd, buf, len1);
1178  if (ret != len1)
1179  return;
1180  len -= len1;
1181  }
1182 }
1183 
1185  unsigned char **content_ptr,
1186  int return_on_interleaved_data, const char *method)
1187 {
1188  RTSPState *rt = s->priv_data;
1189  char buf[MAX_URL_SIZE], buf1[MAX_URL_SIZE], *q;
1190  unsigned char ch;
1191  const char *p;
1192  int ret, content_length, line_count = 0, request = 0;
1193  unsigned char *content = NULL;
1194 
1195 start:
1196  line_count = 0;
1197  request = 0;
1198  content = NULL;
1199  memset(reply, 0, sizeof(*reply));
1200 
1201  /* parse reply (XXX: use buffers) */
1202  rt->last_reply[0] = '\0';
1203  for (;;) {
1204  q = buf;
1205  for (;;) {
1206  ret = ffurl_read_complete(rt->rtsp_hd, &ch, 1);
1207  av_log(s, AV_LOG_TRACE, "ret=%d c=%02x [%c]\n", ret, ch, ch);
1208  if (ret != 1)
1209  return AVERROR_EOF;
1210  if (ch == '\n')
1211  break;
1212  if (ch == '$' && q == buf) {
1213  if (return_on_interleaved_data) {
1214  return 1;
1215  } else
1217  } else if (ch != '\r') {
1218  if ((q - buf) < sizeof(buf) - 1)
1219  *q++ = ch;
1220  }
1221  }
1222  *q = '\0';
1223 
1224  av_log(s, AV_LOG_TRACE, "line='%s'\n", buf);
1225 
1226  /* test if last line */
1227  if (buf[0] == '\0')
1228  break;
1229  p = buf;
1230  if (line_count == 0) {
1231  /* get reply code */
1232  get_word(buf1, sizeof(buf1), &p);
1233  if (!strncmp(buf1, "RTSP/", 5)) {
1234  get_word(buf1, sizeof(buf1), &p);
1235  reply->status_code = atoi(buf1);
1236  av_strlcpy(reply->reason, p, sizeof(reply->reason));
1237  } else {
1238  av_strlcpy(reply->reason, buf1, sizeof(reply->reason)); // method
1239  get_word(buf1, sizeof(buf1), &p); // object
1240  request = 1;
1241  }
1242  } else {
1243  ff_rtsp_parse_line(s, reply, p, rt, method);
1244  av_strlcat(rt->last_reply, p, sizeof(rt->last_reply));
1245  av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply));
1246  }
1247  line_count++;
1248  }
1249 
1250  if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0' && !request)
1251  av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id));
1252 
1253  content_length = reply->content_length;
1254  if (content_length > 0) {
1255  /* leave some room for a trailing '\0' (useful for simple parsing) */
1256  content = av_malloc(content_length + 1);
1257  if (!content)
1258  return AVERROR(ENOMEM);
1259  if (ffurl_read_complete(rt->rtsp_hd, content, content_length) != content_length)
1260  return AVERROR(EIO);
1261  content[content_length] = '\0';
1262  }
1263  if (content_ptr)
1264  *content_ptr = content;
1265  else
1266  av_freep(&content);
1267 
1268  if (request) {
1269  char buf[MAX_URL_SIZE];
1270  char base64buf[AV_BASE64_SIZE(sizeof(buf))];
1271  const char* ptr = buf;
1272 
1273  if (!strcmp(reply->reason, "OPTIONS")) {
1274  snprintf(buf, sizeof(buf), "RTSP/1.0 200 OK\r\n");
1275  if (reply->seq)
1276  av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", reply->seq);
1277  if (reply->session_id[0])
1278  av_strlcatf(buf, sizeof(buf), "Session: %s\r\n",
1279  reply->session_id);
1280  } else {
1281  snprintf(buf, sizeof(buf), "RTSP/1.0 501 Not Implemented\r\n");
1282  }
1283  av_strlcat(buf, "\r\n", sizeof(buf));
1284 
1285  if (rt->control_transport == RTSP_MODE_TUNNEL) {
1286  av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
1287  ptr = base64buf;
1288  }
1289  ffurl_write(rt->rtsp_hd_out, ptr, strlen(ptr));
1290 
1292  /* Even if the request from the server had data, it is not the data
1293  * that the caller wants or expects. The memory could also be leaked
1294  * if the actual following reply has content data. */
1295  if (content_ptr)
1296  av_freep(content_ptr);
1297  /* If method is set, this is called from ff_rtsp_send_cmd,
1298  * where a reply to exactly this request is awaited. For
1299  * callers from within packet receiving, we just want to
1300  * return to the caller and go back to receiving packets. */
1301  if (method)
1302  goto start;
1303  return 0;
1304  }
1305 
1306  if (rt->seq != reply->seq) {
1307  av_log(s, AV_LOG_WARNING, "CSeq %d expected, %d received.\n",
1308  rt->seq, reply->seq);
1309  }
1310 
1311  /* EOS */
1312  if (reply->notice == 2101 /* End-of-Stream Reached */ ||
1313  reply->notice == 2104 /* Start-of-Stream Reached */ ||
1314  reply->notice == 2306 /* Continuous Feed Terminated */) {
1315  rt->state = RTSP_STATE_IDLE;
1316  } else if (reply->notice >= 4400 && reply->notice < 5500) {
1317  return AVERROR(EIO); /* data or server error */
1318  } else if (reply->notice == 2401 /* Ticket Expired */ ||
1319  (reply->notice >= 5500 && reply->notice < 5600) /* end of term */ )
1320  return AVERROR(EPERM);
1321 
1322  return 0;
1323 }
1324 
1325 /**
1326  * Send a command to the RTSP server without waiting for the reply.
1327  *
1328  * @param s RTSP (de)muxer context
1329  * @param method the method for the request
1330  * @param url the target url for the request
1331  * @param headers extra header lines to include in the request
1332  * @param send_content if non-null, the data to send as request body content
1333  * @param send_content_length the length of the send_content data, or 0 if
1334  * send_content is null
1335  *
1336  * @return zero if success, nonzero otherwise
1337  */
1338 static int rtsp_send_cmd_with_content_async(AVFormatContext *s,
1339  const char *method, const char *url,
1340  const char *headers,
1341  const unsigned char *send_content,
1342  int send_content_length)
1343 {
1344  RTSPState *rt = s->priv_data;
1345  char buf[MAX_URL_SIZE], *out_buf;
1346  char base64buf[AV_BASE64_SIZE(sizeof(buf))];
1347 
1348  if (!rt->rtsp_hd_out)
1349  return AVERROR(ENOTCONN);
1350 
1351  /* Add in RTSP headers */
1352  out_buf = buf;
1353  rt->seq++;
1354  snprintf(buf, sizeof(buf), "%s %s RTSP/1.0\r\n", method, url);
1355  if (headers)
1356  av_strlcat(buf, headers, sizeof(buf));
1357  av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", rt->seq);
1358  av_strlcatf(buf, sizeof(buf), "User-Agent: %s\r\n", rt->user_agent);
1359  if (rt->session_id[0] != '\0' && (!headers ||
1360  !strstr(headers, "\nIf-Match:"))) {
1361  av_strlcatf(buf, sizeof(buf), "Session: %s\r\n", rt->session_id);
1362  }
1363  if (rt->auth[0]) {
1365  rt->auth, url, method);
1366  if (str)
1367  av_strlcat(buf, str, sizeof(buf));
1368  av_free(str);
1369  }
1370  if (send_content_length > 0 && send_content)
1371  av_strlcatf(buf, sizeof(buf), "Content-Length: %d\r\n", send_content_length);
1372  av_strlcat(buf, "\r\n", sizeof(buf));
1373 
1374  /* base64 encode rtsp if tunneling */
1375  if (rt->control_transport == RTSP_MODE_TUNNEL) {
1376  av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
1377  out_buf = base64buf;
1378  }
1379 
1380  av_log(s, AV_LOG_TRACE, "Sending:\n%s--\n", buf);
1381 
1382  ffurl_write(rt->rtsp_hd_out, out_buf, strlen(out_buf));
1383  if (send_content_length > 0 && send_content) {
1384  if (rt->control_transport == RTSP_MODE_TUNNEL) {
1385  avpriv_report_missing_feature(s, "Tunneling of RTSP requests with content data");
1386  return AVERROR_PATCHWELCOME;
1387  }
1388  ffurl_write(rt->rtsp_hd_out, send_content, send_content_length);
1389  }
1391 
1392  return 0;
1393 }
1394 
1395 int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method,
1396  const char *url, const char *headers)
1397 {
1398  return rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
1399 }
1400 
1401 int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url,
1402  const char *headers, RTSPMessageHeader *reply,
1403  unsigned char **content_ptr)
1404 {
1405  return ff_rtsp_send_cmd_with_content(s, method, url, headers, reply,
1406  content_ptr, NULL, 0);
1407 }
1408 
1410  const char *method, const char *url,
1411  const char *header,
1412  RTSPMessageHeader *reply,
1413  unsigned char **content_ptr,
1414  const unsigned char *send_content,
1415  int send_content_length)
1416 {
1417  RTSPState *rt = s->priv_data;
1418  HTTPAuthType cur_auth_type;
1419  int ret, attempts = 0;
1420 
1421 retry:
1422  cur_auth_type = rt->auth_state.auth_type;
1423  if ((ret = rtsp_send_cmd_with_content_async(s, method, url, header,
1424  send_content,
1425  send_content_length)) < 0)
1426  return ret;
1427 
1428  if ((ret = ff_rtsp_read_reply(s, reply, content_ptr, 0, method) ) < 0)
1429  return ret;
1430  attempts++;
1431 
1432  if (reply->status_code == 401 &&
1433  (cur_auth_type == HTTP_AUTH_NONE || rt->auth_state.stale) &&
1434  rt->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2)
1435  goto retry;
1436 
1437  if (reply->status_code > 400){
1438  av_log(s, AV_LOG_ERROR, "method %s failed: %d%s\n",
1439  method,
1440  reply->status_code,
1441  reply->reason);
1442  av_log(s, AV_LOG_DEBUG, "%s\n", rt->last_reply);
1443  }
1444 
1445  return 0;
1446 }
1447 
1448 int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
1449  int lower_transport, const char *real_challenge)
1450 {
1451  RTSPState *rt = s->priv_data;
1452  int rtx = 0, j, i, err, interleave = 0, port_off;
1453  RTSPStream *rtsp_st;
1454  RTSPMessageHeader reply1, *reply = &reply1;
1455  char cmd[MAX_URL_SIZE];
1456  const char *trans_pref;
1457 
1458  memset(&reply1, 0, sizeof(reply1));
1459 
1460  if (rt->transport == RTSP_TRANSPORT_RDT)
1461  trans_pref = "x-pn-tng";
1462  else if (rt->transport == RTSP_TRANSPORT_RAW)
1463  trans_pref = "RAW/RAW";
1464  else
1465  trans_pref = "RTP/AVP";
1466 
1467  /* default timeout: 1 minute */
1468  rt->timeout = 60;
1469 
1470  /* Choose a random starting offset within the first half of the
1471  * port range, to allow for a number of ports to try even if the offset
1472  * happens to be at the end of the random range. */
1473  port_off = av_get_random_seed() % ((rt->rtp_port_max - rt->rtp_port_min)/2);
1474  /* even random offset */
1475  port_off -= port_off & 0x01;
1476 
1477  for (j = rt->rtp_port_min + port_off, i = 0; i < rt->nb_rtsp_streams; ++i) {
1478  char transport[MAX_URL_SIZE];
1479 
1480  /*
1481  * WMS serves all UDP data over a single connection, the RTX, which
1482  * isn't necessarily the first in the SDP but has to be the first
1483  * to be set up, else the second/third SETUP will fail with a 461.
1484  */
1485  if (lower_transport == RTSP_LOWER_TRANSPORT_UDP &&
1486  rt->server_type == RTSP_SERVER_WMS) {
1487  if (i == 0) {
1488  /* rtx first */
1489  for (rtx = 0; rtx < rt->nb_rtsp_streams; rtx++) {
1490  int len = strlen(rt->rtsp_streams[rtx]->control_url);
1491  if (len >= 4 &&
1492  !strcmp(rt->rtsp_streams[rtx]->control_url + len - 4,
1493  "/rtx"))
1494  break;
1495  }
1496  if (rtx == rt->nb_rtsp_streams)
1497  return -1; /* no RTX found */
1498  rtsp_st = rt->rtsp_streams[rtx];
1499  } else
1500  rtsp_st = rt->rtsp_streams[i > rtx ? i : i - 1];
1501  } else
1502  rtsp_st = rt->rtsp_streams[i];
1503 
1504  /* RTP/UDP */
1505  if (lower_transport == RTSP_LOWER_TRANSPORT_UDP) {
1506  char buf[256];
1507 
1508  if (rt->server_type == RTSP_SERVER_WMS && i > 1) {
1509  port = reply->transports[0].client_port_min;
1510  goto have_port;
1511  }
1512 
1513  /* first try in specified port range */
1514  while (j <= rt->rtp_port_max) {
1515  AVDictionary *opts = map_to_opts(rt);
1516 
1517  ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
1518  "?localport=%d", j);
1519  /* we will use two ports per rtp stream (rtp and rtcp) */
1520  j += 2;
1522  &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
1523 
1524  av_dict_free(&opts);
1525 
1526  if (!err)
1527  goto rtp_opened;
1528  }
1529  av_log(s, AV_LOG_ERROR, "Unable to open an input RTP port\n");
1530  err = AVERROR(EIO);
1531  goto fail;
1532 
1533  rtp_opened:
1534  port = ff_rtp_get_local_rtp_port(rtsp_st->rtp_handle);
1535  have_port:
1536  av_strlcpy(transport, trans_pref, sizeof(transport));
1537  av_strlcat(transport,
1538  rt->server_type == RTSP_SERVER_SATIP ? ";" : "/UDP;",
1539  sizeof(transport));
1540  if (rt->server_type != RTSP_SERVER_REAL)
1541  av_strlcat(transport, "unicast;", sizeof(transport));
1542  av_strlcatf(transport, sizeof(transport),
1543  "client_port=%d", port);
1544  if (rt->transport == RTSP_TRANSPORT_RTP &&
1545  !(rt->server_type == RTSP_SERVER_WMS && i > 0))
1546  av_strlcatf(transport, sizeof(transport), "-%d", port + 1);
1547  }
1548 
1549  /* RTP/TCP */
1550  else if (lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
1551  /* For WMS streams, the application streams are only used for
1552  * UDP. When trying to set it up for TCP streams, the server
1553  * will return an error. Therefore, we skip those streams. */
1554  if (rt->server_type == RTSP_SERVER_WMS &&
1555  (rtsp_st->stream_index < 0 ||
1556  s->streams[rtsp_st->stream_index]->codecpar->codec_type ==
1558  continue;
1559  snprintf(transport, sizeof(transport) - 1,
1560  "%s/TCP;", trans_pref);
1561  if (rt->transport != RTSP_TRANSPORT_RDT)
1562  av_strlcat(transport, "unicast;", sizeof(transport));
1563  av_strlcatf(transport, sizeof(transport),
1564  "interleaved=%d-%d",
1565  interleave, interleave + 1);
1566  interleave += 2;
1567  }
1568 
1569  else if (lower_transport == RTSP_LOWER_TRANSPORT_UDP_MULTICAST) {
1570  snprintf(transport, sizeof(transport) - 1,
1571  "%s/UDP;multicast", trans_pref);
1572  } else {
1573  err = AVERROR(EINVAL);
1574  goto fail; // transport would be uninitialized
1575  }
1576 
1577  if (s->oformat) {
1578  av_strlcat(transport, ";mode=record", sizeof(transport));
1579  } else if (rt->server_type == RTSP_SERVER_REAL ||
1581  av_strlcat(transport, ";mode=play", sizeof(transport));
1582  snprintf(cmd, sizeof(cmd),
1583  "Transport: %s\r\n",
1584  transport);
1585  if (rt->accept_dynamic_rate)
1586  av_strlcat(cmd, "x-Dynamic-Rate: 0\r\n", sizeof(cmd));
1587  if (CONFIG_RTPDEC && i == 0 && rt->server_type == RTSP_SERVER_REAL) {
1588  char real_res[41], real_csum[9];
1589  ff_rdt_calc_response_and_checksum(real_res, real_csum,
1590  real_challenge);
1591  av_strlcatf(cmd, sizeof(cmd),
1592  "If-Match: %s\r\n"
1593  "RealChallenge2: %s, sd=%s\r\n",
1594  rt->session_id, real_res, real_csum);
1595  }
1596  ff_rtsp_send_cmd(s, "SETUP", rtsp_st->control_url, cmd, reply, NULL);
1597  if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) {
1598  err = 1;
1599  goto fail;
1600  } else if (reply->status_code != RTSP_STATUS_OK ||
1601  reply->nb_transports != 1) {
1603  goto fail;
1604  }
1605 
1606  if (rt->server_type == RTSP_SERVER_SATIP && reply->stream_id[0]) {
1607  char proto[128], host[128], path[512], auth[128];
1608  int port;
1609  av_url_split(proto, sizeof(proto), auth, sizeof(auth), host, sizeof(host),
1610  &port, path, sizeof(path), rt->control_uri);
1611  ff_url_join(rt->control_uri, sizeof(rt->control_uri), proto, NULL, host,
1612  port, "/stream=%s", reply->stream_id);
1613  }
1614 
1615  /* XXX: same protocol for all streams is required */
1616  if (i > 0) {
1617  if (reply->transports[0].lower_transport != rt->lower_transport ||
1618  reply->transports[0].transport != rt->transport) {
1619  err = AVERROR_INVALIDDATA;
1620  goto fail;
1621  }
1622  } else {
1623  rt->lower_transport = reply->transports[0].lower_transport;
1624  rt->transport = reply->transports[0].transport;
1625  }
1626 
1627  /* Fail if the server responded with another lower transport mode
1628  * than what we requested. */
1629  if (reply->transports[0].lower_transport != lower_transport) {
1630  av_log(s, AV_LOG_ERROR, "Nonmatching transport in server reply\n");
1631  err = AVERROR_INVALIDDATA;
1632  goto fail;
1633  }
1634 
1635  switch(reply->transports[0].lower_transport) {
1637  rtsp_st->interleaved_min = reply->transports[0].interleaved_min;
1638  rtsp_st->interleaved_max = reply->transports[0].interleaved_max;
1639  break;
1640 
1641  case RTSP_LOWER_TRANSPORT_UDP: {
1642  char url[MAX_URL_SIZE], options[30] = "";
1643  const char *peer = host;
1644 
1645  if (rt->rtsp_flags & RTSP_FLAG_FILTER_SRC)
1646  av_strlcpy(options, "?connect=1", sizeof(options));
1647  /* Use source address if specified */
1648  if (reply->transports[0].source[0])
1649  peer = reply->transports[0].source;
1650  ff_url_join(url, sizeof(url), "rtp", NULL, peer,
1651  reply->transports[0].server_port_min, "%s", options);
1652  if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) &&
1653  ff_rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) {
1654  err = AVERROR_INVALIDDATA;
1655  goto fail;
1656  }
1657  break;
1658  }
1660  char url[MAX_URL_SIZE], namebuf[50], optbuf[20] = "";
1661  struct sockaddr_storage addr;
1662  int port, ttl;
1663  AVDictionary *opts = map_to_opts(rt);
1664 
1665  if (reply->transports[0].destination.ss_family) {
1666  addr = reply->transports[0].destination;
1667  port = reply->transports[0].port_min;
1668  ttl = reply->transports[0].ttl;
1669  } else {
1670  addr = rtsp_st->sdp_ip;
1671  port = rtsp_st->sdp_port;
1672  ttl = rtsp_st->sdp_ttl;
1673  }
1674  if (ttl > 0)
1675  snprintf(optbuf, sizeof(optbuf), "?ttl=%d", ttl);
1676  getnameinfo((struct sockaddr*) &addr, sizeof(addr),
1677  namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
1678  ff_url_join(url, sizeof(url), "rtp", NULL, namebuf,
1679  port, "%s", optbuf);
1681  &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
1682  av_dict_free(&opts);
1683 
1684  if (err < 0) {
1685  err = AVERROR_INVALIDDATA;
1686  goto fail;
1687  }
1688  break;
1689  }
1690  }
1691 
1692  if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
1693  goto fail;
1694  }
1695 
1696  if (rt->nb_rtsp_streams && reply->timeout > 0)
1697  rt->timeout = reply->timeout;
1698 
1699  if (rt->server_type == RTSP_SERVER_REAL)
1700  rt->need_subscription = 1;
1701 
1702  return 0;
1703 
1704 fail:
1705  ff_rtsp_undo_setup(s, 0);
1706  return err;
1707 }
1708 
1710 {
1711  RTSPState *rt = s->priv_data;
1712  if (rt->rtsp_hd_out != rt->rtsp_hd)
1713  ffurl_closep(&rt->rtsp_hd_out);
1714  rt->rtsp_hd_out = NULL;
1715  ffurl_closep(&rt->rtsp_hd);
1716 }
1717 
1719 {
1720  RTSPState *rt = s->priv_data;
1721  char proto[128], host[1024], path[1024];
1722  char tcpname[1024], cmd[MAX_URL_SIZE], auth[128];
1723  const char *lower_rtsp_proto = "tcp";
1724  int port, err, tcp_fd;
1725  RTSPMessageHeader reply1, *reply = &reply1;
1726  int lower_transport_mask = 0;
1727  int default_port = RTSP_DEFAULT_PORT;
1728  int https_tunnel = 0;
1729  char real_challenge[64] = "";
1730  struct sockaddr_storage peer;
1731  socklen_t peer_len = sizeof(peer);
1732 
1733  if (rt->rtp_port_max < rt->rtp_port_min) {
1734  av_log(s, AV_LOG_ERROR, "Invalid UDP port range, max port %d less "
1735  "than min port %d\n", rt->rtp_port_max,
1736  rt->rtp_port_min);
1737  return AVERROR(EINVAL);
1738  }
1739 
1740  if (!ff_network_init())
1741  return AVERROR(EIO);
1742 
1743  if (s->max_delay < 0) /* Not set by the caller */
1744  s->max_delay = s->iformat ? DEFAULT_REORDERING_DELAY : 0;
1745 
1748  (1 << RTSP_LOWER_TRANSPORT_HTTPS))) {
1749  https_tunnel = !!(rt->lower_transport_mask & (1 << RTSP_LOWER_TRANSPORT_HTTPS));
1752  }
1753  /* Only pass through valid flags from here */
1755 
1756 redirect:
1757  memset(&reply1, 0, sizeof(reply1));
1758  /* extract hostname and port */
1759  av_url_split(proto, sizeof(proto), auth, sizeof(auth),
1760  host, sizeof(host), &port, path, sizeof(path), s->url);
1761 
1762  if (!strcmp(proto, "rtsps")) {
1763  lower_rtsp_proto = "tls";
1764  default_port = RTSPS_DEFAULT_PORT;
1766  } else if (!strcmp(proto, "satip")) {
1767  av_strlcpy(proto, "rtsp", sizeof(proto));
1769  } else if (strcmp(proto, "rtsp"))
1770  return AVERROR_INVALIDDATA;
1771 
1772  if (*auth) {
1773  av_strlcpy(rt->auth, auth, sizeof(rt->auth));
1774  }
1775  if (port < 0)
1776  port = default_port;
1777 
1778  lower_transport_mask = rt->lower_transport_mask;
1779 
1780  if (!lower_transport_mask)
1781  lower_transport_mask = (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
1782 
1783  if (s->oformat) {
1784  /* Only UDP or TCP - UDP multicast isn't supported. */
1785  lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_UDP) |
1786  (1 << RTSP_LOWER_TRANSPORT_TCP);
1787  if (!lower_transport_mask || rt->control_transport == RTSP_MODE_TUNNEL) {
1788  av_log(s, AV_LOG_ERROR, "Unsupported lower transport method, "
1789  "only UDP and TCP are supported for output.\n");
1790  err = AVERROR(EINVAL);
1791  goto fail;
1792  }
1793  }
1794 
1795  /* Construct the URI used in request; this is similar to s->url,
1796  * but with authentication credentials removed and RTSP specific options
1797  * stripped out. */
1798  ff_url_join(rt->control_uri, sizeof(rt->control_uri), proto, NULL,
1799  host, port, "%s", path);
1800 
1801  if (rt->control_transport == RTSP_MODE_TUNNEL) {
1802  /* set up initial handshake for tunneling */
1803  char httpname[1024];
1804  char sessioncookie[17];
1805  char headers[1024];
1807 
1808  av_dict_set_int(&options, "timeout", rt->stimeout, 0);
1809 
1810  ff_url_join(httpname, sizeof(httpname), https_tunnel ? "https" : "http", auth, host, port, "%s", path);
1811  snprintf(sessioncookie, sizeof(sessioncookie), "%08x%08x",
1813 
1814  /* GET requests */
1815  if (ffurl_alloc(&rt->rtsp_hd, httpname, AVIO_FLAG_READ,
1816  &s->interrupt_callback) < 0) {
1817  err = AVERROR(EIO);
1818  goto fail;
1819  }
1820 
1821  /* generate GET headers */
1822  snprintf(headers, sizeof(headers),
1823  "x-sessioncookie: %s\r\n"
1824  "Accept: application/x-rtsp-tunnelled\r\n"
1825  "Pragma: no-cache\r\n"
1826  "Cache-Control: no-cache\r\n",
1827  sessioncookie);
1828  av_opt_set(rt->rtsp_hd->priv_data, "headers", headers, 0);
1829 
1830  if (!rt->rtsp_hd->protocol_whitelist && s->protocol_whitelist) {
1831  rt->rtsp_hd->protocol_whitelist = av_strdup(s->protocol_whitelist);
1832  if (!rt->rtsp_hd->protocol_whitelist) {
1833  err = AVERROR(ENOMEM);
1834  goto fail;
1835  }
1836  }
1837 
1838  if (!rt->rtsp_hd->protocol_blacklist && s->protocol_blacklist) {
1839  rt->rtsp_hd->protocol_blacklist = av_strdup(s->protocol_blacklist);
1840  if (!rt->rtsp_hd->protocol_blacklist) {
1842  err = AVERROR(ENOMEM);
1843  goto fail;
1844  }
1845  }
1846 
1847  /* complete the connection */
1848  if (ffurl_connect(rt->rtsp_hd, &options)) {
1850  err = AVERROR(EIO);
1851  goto fail;
1852  }
1853 
1854  /* POST requests */
1855  if (ffurl_alloc(&rt->rtsp_hd_out, httpname, AVIO_FLAG_WRITE,
1856  &s->interrupt_callback) < 0 ) {
1857  err = AVERROR(EIO);
1858  goto fail;
1859  }
1860 
1861  /* generate POST headers */
1862  snprintf(headers, sizeof(headers),
1863  "x-sessioncookie: %s\r\n"
1864  "Content-Type: application/x-rtsp-tunnelled\r\n"
1865  "Pragma: no-cache\r\n"
1866  "Cache-Control: no-cache\r\n"
1867  "Content-Length: 32767\r\n"
1868  "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n",
1869  sessioncookie);
1870  av_opt_set(rt->rtsp_hd_out->priv_data, "headers", headers, 0);
1871  av_opt_set(rt->rtsp_hd_out->priv_data, "chunked_post", "0", 0);
1872  av_opt_set(rt->rtsp_hd_out->priv_data, "send_expect_100", "0", 0);
1873 
1874  /* Initialize the authentication state for the POST session. The HTTP
1875  * protocol implementation doesn't properly handle multi-pass
1876  * authentication for POST requests, since it would require one of
1877  * the following:
1878  * - implementing Expect: 100-continue, which many HTTP servers
1879  * don't support anyway, even less the RTSP servers that do HTTP
1880  * tunneling
1881  * - sending the whole POST data until getting a 401 reply specifying
1882  * what authentication method to use, then resending all that data
1883  * - waiting for potential 401 replies directly after sending the
1884  * POST header (waiting for some unspecified time)
1885  * Therefore, we copy the full auth state, which works for both basic
1886  * and digest. (For digest, we would have to synchronize the nonce
1887  * count variable between the two sessions, if we'd do more requests
1888  * with the original session, though.)
1889  */
1891 
1892  /* complete the connection */
1893  if (ffurl_connect(rt->rtsp_hd_out, &options)) {
1895  err = AVERROR(EIO);
1896  goto fail;
1897  }
1899  } else {
1900  int ret;
1901  /* open the tcp connection */
1902  ff_url_join(tcpname, sizeof(tcpname), lower_rtsp_proto, NULL,
1903  host, port,
1904  "?timeout=%d", rt->stimeout);
1905  if ((ret = ffurl_open_whitelist(&rt->rtsp_hd, tcpname, AVIO_FLAG_READ_WRITE,
1906  &s->interrupt_callback, NULL, s->protocol_whitelist, s->protocol_blacklist, NULL)) < 0) {
1907  err = ret;
1908  goto fail;
1909  }
1910  rt->rtsp_hd_out = rt->rtsp_hd;
1911  }
1912  rt->seq = 0;
1913 
1914  tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
1915  if (tcp_fd < 0) {
1916  err = tcp_fd;
1917  goto fail;
1918  }
1919  if (!getpeername(tcp_fd, (struct sockaddr*) &peer, &peer_len)) {
1920  getnameinfo((struct sockaddr*) &peer, peer_len, host, sizeof(host),
1921  NULL, 0, NI_NUMERICHOST);
1922  }
1923 
1924  /* request options supported by the server; this also detects server
1925  * type */
1926  if (rt->server_type != RTSP_SERVER_SATIP)
1928  for (;;) {
1929  cmd[0] = 0;
1930  if (rt->server_type == RTSP_SERVER_REAL)
1931  av_strlcat(cmd,
1932  /*
1933  * The following entries are required for proper
1934  * streaming from a Realmedia server. They are
1935  * interdependent in some way although we currently
1936  * don't quite understand how. Values were copied
1937  * from mplayer SVN r23589.
1938  * ClientChallenge is a 16-byte ID in hex
1939  * CompanyID is a 16-byte ID in base64
1940  */
1941  "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
1942  "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
1943  "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
1944  "GUID: 00000000-0000-0000-0000-000000000000\r\n",
1945  sizeof(cmd));
1946  ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL);
1947  if (reply->status_code != RTSP_STATUS_OK) {
1949  goto fail;
1950  }
1951 
1952  /* detect server type if not standard-compliant RTP */
1953  if (rt->server_type != RTSP_SERVER_REAL && reply->real_challenge[0]) {
1955  continue;
1956  } else if (!av_strncasecmp(reply->server, "WMServer/", 9)) {
1958  } else if (rt->server_type == RTSP_SERVER_REAL)
1959  strcpy(real_challenge, reply->real_challenge);
1960  break;
1961  }
1962 
1963 #if CONFIG_RTSP_DEMUXER
1964  if (s->iformat) {
1965  if (rt->server_type == RTSP_SERVER_SATIP)
1966  err = init_satip_stream(s);
1967  else
1968  err = ff_rtsp_setup_input_streams(s, reply);
1969  } else
1970 #endif
1971  if (CONFIG_RTSP_MUXER)
1972  err = ff_rtsp_setup_output_streams(s, host);
1973  else
1974  av_assert0(0);
1975  if (err)
1976  goto fail;
1977 
1978  do {
1979  int lower_transport = ff_log2_tab[lower_transport_mask &
1980  ~(lower_transport_mask - 1)];
1981 
1982  if ((lower_transport_mask & (1 << RTSP_LOWER_TRANSPORT_TCP))
1983  && (rt->rtsp_flags & RTSP_FLAG_PREFER_TCP))
1984  lower_transport = RTSP_LOWER_TRANSPORT_TCP;
1985 
1986  err = ff_rtsp_make_setup_request(s, host, port, lower_transport,
1987  rt->server_type == RTSP_SERVER_REAL ?
1988  real_challenge : NULL);
1989  if (err < 0)
1990  goto fail;
1991  lower_transport_mask &= ~(1 << lower_transport);
1992  if (lower_transport_mask == 0 && err == 1) {
1993  err = AVERROR(EPROTONOSUPPORT);
1994  goto fail;
1995  }
1996  } while (err);
1997 
1998  rt->lower_transport_mask = lower_transport_mask;
1999  av_strlcpy(rt->real_challenge, real_challenge, sizeof(rt->real_challenge));
2000  rt->state = RTSP_STATE_IDLE;
2001  rt->seek_timestamp = 0; /* default is to start stream at position zero */
2002  return 0;
2003  fail:
2006  if (reply->status_code >=300 && reply->status_code < 400 && s->iformat) {
2007  char *new_url = av_strdup(reply->location);
2008  if (!new_url) {
2009  err = AVERROR(ENOMEM);
2010  goto fail2;
2011  }
2012  ff_format_set_url(s, new_url);
2013  rt->session_id[0] = '\0';
2014  av_log(s, AV_LOG_INFO, "Status %d: Redirecting to %s\n",
2015  reply->status_code,
2016  s->url);
2017  goto redirect;
2018  }
2019  fail2:
2020  ff_network_close();
2021  return err;
2022 }
2023 #endif /* CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER */
2024 
2025 #if CONFIG_RTPDEC
2026 static int parse_rtsp_message(AVFormatContext *s)
2027 {
2028  RTSPState *rt = s->priv_data;
2029  int ret;
2030 
2031  if (rt->rtsp_flags & RTSP_FLAG_LISTEN) {
2032  if (rt->state == RTSP_STATE_STREAMING) {
2034  } else
2035  return AVERROR_EOF;
2036  } else {
2037  RTSPMessageHeader reply;
2038  ret = ff_rtsp_read_reply(s, &reply, NULL, 0, NULL);
2039  if (ret < 0)
2040  return ret;
2041  /* XXX: parse message */
2042  if (rt->state != RTSP_STATE_STREAMING)
2043  return 0;
2044  }
2045 
2046  return 0;
2047 }
2048 
2049 static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
2050  uint8_t *buf, int buf_size, int64_t wait_end)
2051 {
2052  RTSPState *rt = s->priv_data;
2053  RTSPStream *rtsp_st;
2054  int n, i, ret;
2055  struct pollfd *p = rt->p;
2056  int *fds = NULL, fdsnum, fdsidx;
2057  int runs = rt->initial_timeout * 1000LL / POLLING_TIME;
2058 
2059  if (!p) {
2060  p = rt->p = av_malloc_array(2 * rt->nb_rtsp_streams + 1, sizeof(*p));
2061  if (!p)
2062  return AVERROR(ENOMEM);
2063 
2064  if (rt->rtsp_hd) {
2065  p[rt->max_p].fd = ffurl_get_file_handle(rt->rtsp_hd);
2066  p[rt->max_p++].events = POLLIN;
2067  }
2068  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2069  rtsp_st = rt->rtsp_streams[i];
2070  if (rtsp_st->rtp_handle) {
2071  if (ret = ffurl_get_multi_file_handle(rtsp_st->rtp_handle,
2072  &fds, &fdsnum)) {
2073  av_log(s, AV_LOG_ERROR, "Unable to recover rtp ports\n");
2074  return ret;
2075  }
2076  if (fdsnum != 2) {
2078  "Number of fds %d not supported\n", fdsnum);
2079  return AVERROR_INVALIDDATA;
2080  }
2081  for (fdsidx = 0; fdsidx < fdsnum; fdsidx++) {
2082  p[rt->max_p].fd = fds[fdsidx];
2083  p[rt->max_p++].events = POLLIN;
2084  }
2085  av_freep(&fds);
2086  }
2087  }
2088  }
2089 
2090  for (;;) {
2091  if (ff_check_interrupt(&s->interrupt_callback))
2092  return AVERROR_EXIT;
2093  if (wait_end && wait_end - av_gettime_relative() < 0)
2094  return AVERROR(EAGAIN);
2095  n = poll(p, rt->max_p, POLLING_TIME);
2096  if (n > 0) {
2097  int j = rt->rtsp_hd ? 1 : 0;
2098  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2099  rtsp_st = rt->rtsp_streams[i];
2100  if (rtsp_st->rtp_handle) {
2101  if (p[j].revents & POLLIN || p[j+1].revents & POLLIN) {
2102  ret = ffurl_read(rtsp_st->rtp_handle, buf, buf_size);
2103  if (ret > 0) {
2104  *prtsp_st = rtsp_st;
2105  return ret;
2106  }
2107  }
2108  j+=2;
2109  }
2110  }
2111 #if CONFIG_RTSP_DEMUXER
2112  if (rt->rtsp_hd && p[0].revents & POLLIN) {
2113  if ((ret = parse_rtsp_message(s)) < 0) {
2114  return ret;
2115  }
2116  }
2117 #endif
2118  } else if (n == 0 && rt->initial_timeout > 0 && --runs <= 0) {
2119  return AVERROR(ETIMEDOUT);
2120  } else if (n < 0 && errno != EINTR)
2121  return AVERROR(errno);
2122  }
2123 }
2124 
2125 static int pick_stream(AVFormatContext *s, RTSPStream **rtsp_st,
2126  const uint8_t *buf, int len)
2127 {
2128  RTSPState *rt = s->priv_data;
2129  int i;
2130  if (len < 0)
2131  return len;
2132  if (rt->nb_rtsp_streams == 1) {
2133  *rtsp_st = rt->rtsp_streams[0];
2134  return len;
2135  }
2136  if (len >= 8 && rt->transport == RTSP_TRANSPORT_RTP) {
2137  if (RTP_PT_IS_RTCP(rt->recvbuf[1])) {
2138  int no_ssrc = 0;
2139  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2140  RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
2141  if (!rtpctx)
2142  continue;
2143  if (rtpctx->ssrc == AV_RB32(&buf[4])) {
2144  *rtsp_st = rt->rtsp_streams[i];
2145  return len;
2146  }
2147  if (!rtpctx->ssrc)
2148  no_ssrc = 1;
2149  }
2150  if (no_ssrc) {
2152  "Unable to pick stream for packet - SSRC not known for "
2153  "all streams\n");
2154  return AVERROR(EAGAIN);
2155  }
2156  } else {
2157  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2158  if ((buf[1] & 0x7f) == rt->rtsp_streams[i]->sdp_payload_type) {
2159  *rtsp_st = rt->rtsp_streams[i];
2160  return len;
2161  }
2162  }
2163  }
2164  }
2165  av_log(s, AV_LOG_WARNING, "Unable to pick stream for packet\n");
2166  return AVERROR(EAGAIN);
2167 }
2168 
2169 static int read_packet(AVFormatContext *s,
2170  RTSPStream **rtsp_st, RTSPStream *first_queue_st,
2171  int64_t wait_end)
2172 {
2173  RTSPState *rt = s->priv_data;
2174  int len;
2175 
2176  switch(rt->lower_transport) {
2177  default:
2178 #if CONFIG_RTSP_DEMUXER
2180  len = ff_rtsp_tcp_read_packet(s, rtsp_st, rt->recvbuf, RECVBUF_SIZE);
2181  break;
2182 #endif
2185  len = udp_read_packet(s, rtsp_st, rt->recvbuf, RECVBUF_SIZE, wait_end);
2186  if (len > 0 && (*rtsp_st)->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
2187  ff_rtp_check_and_send_back_rr((*rtsp_st)->transport_priv, (*rtsp_st)->rtp_handle, NULL, len);
2188  break;
2190  if (first_queue_st && rt->transport == RTSP_TRANSPORT_RTP &&
2191  wait_end && wait_end < av_gettime_relative())
2192  len = AVERROR(EAGAIN);
2193  else
2195  len = pick_stream(s, rtsp_st, rt->recvbuf, len);
2196  if (len > 0 && (*rtsp_st)->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
2197  ff_rtp_check_and_send_back_rr((*rtsp_st)->transport_priv, NULL, s->pb, len);
2198  break;
2199  }
2200 
2201  if (len == 0)
2202  return AVERROR_EOF;
2203 
2204  return len;
2205 }
2206 
2208 {
2209  RTSPState *rt = s->priv_data;
2210  int ret, len;
2211  RTSPStream *rtsp_st, *first_queue_st = NULL;
2212  int64_t wait_end = 0;
2213 
2214  if (rt->nb_byes == rt->nb_rtsp_streams)
2215  return AVERROR_EOF;
2216 
2217  /* get next frames from the same RTP packet */
2218  if (rt->cur_transport_priv) {
2219  if (rt->transport == RTSP_TRANSPORT_RDT) {
2221  } else if (rt->transport == RTSP_TRANSPORT_RTP) {
2223  } else if (CONFIG_RTPDEC && rt->ts) {
2224  ret = avpriv_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf + rt->recvbuf_pos, rt->recvbuf_len - rt->recvbuf_pos);
2225  if (ret >= 0) {
2226  rt->recvbuf_pos += ret;
2227  ret = rt->recvbuf_pos < rt->recvbuf_len;
2228  }
2229  } else
2230  ret = -1;
2231  if (ret == 0) {
2232  rt->cur_transport_priv = NULL;
2233  return 0;
2234  } else if (ret == 1) {
2235  return 0;
2236  } else
2237  rt->cur_transport_priv = NULL;
2238  }
2239 
2240 redo:
2241  if (rt->transport == RTSP_TRANSPORT_RTP) {
2242  int i;
2243  int64_t first_queue_time = 0;
2244  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2245  RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
2246  int64_t queue_time;
2247  if (!rtpctx)
2248  continue;
2249  queue_time = ff_rtp_queued_packet_time(rtpctx);
2250  if (queue_time && (queue_time - first_queue_time < 0 ||
2251  !first_queue_time)) {
2252  first_queue_time = queue_time;
2253  first_queue_st = rt->rtsp_streams[i];
2254  }
2255  }
2256  if (first_queue_time) {
2257  wait_end = first_queue_time + s->max_delay;
2258  } else {
2259  wait_end = 0;
2260  first_queue_st = NULL;
2261  }
2262  }
2263 
2264  /* read next RTP packet */
2265  if (!rt->recvbuf) {
2267  if (!rt->recvbuf)
2268  return AVERROR(ENOMEM);
2269  }
2270 
2271  len = read_packet(s, &rtsp_st, first_queue_st, wait_end);
2272  if (len == AVERROR(EAGAIN) && first_queue_st &&
2273  rt->transport == RTSP_TRANSPORT_RTP) {
2275  "max delay reached. need to consume packet\n");
2276  rtsp_st = first_queue_st;
2277  ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, NULL, 0);
2278  goto end;
2279  }
2280  if (len < 0)
2281  return len;
2282 
2283  if (rt->transport == RTSP_TRANSPORT_RDT) {
2284  ret = ff_rdt_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
2285  } else if (rt->transport == RTSP_TRANSPORT_RTP) {
2286  ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
2287  if (rtsp_st->feedback) {
2288  AVIOContext *pb = NULL;
2290  pb = s->pb;
2291  ff_rtp_send_rtcp_feedback(rtsp_st->transport_priv, rtsp_st->rtp_handle, pb);
2292  }
2293  if (ret < 0) {
2294  /* Either bad packet, or a RTCP packet. Check if the
2295  * first_rtcp_ntp_time field was initialized. */
2296  RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
2297  if (rtpctx->first_rtcp_ntp_time != AV_NOPTS_VALUE) {
2298  /* first_rtcp_ntp_time has been initialized for this stream,
2299  * copy the same value to all other uninitialized streams,
2300  * in order to map their timestamp origin to the same ntp time
2301  * as this one. */
2302  int i;
2303  AVStream *st = NULL;
2304  if (rtsp_st->stream_index >= 0)
2305  st = s->streams[rtsp_st->stream_index];
2306  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2307  RTPDemuxContext *rtpctx2 = rt->rtsp_streams[i]->transport_priv;
2308  AVStream *st2 = NULL;
2309  if (rt->rtsp_streams[i]->stream_index >= 0)
2310  st2 = s->streams[rt->rtsp_streams[i]->stream_index];
2311  if (rtpctx2 && st && st2 &&
2312  rtpctx2->first_rtcp_ntp_time == AV_NOPTS_VALUE) {
2313  rtpctx2->first_rtcp_ntp_time = rtpctx->first_rtcp_ntp_time;
2314  rtpctx2->rtcp_ts_offset = av_rescale_q(
2315  rtpctx->rtcp_ts_offset, st->time_base,
2316  st2->time_base);
2317  }
2318  }
2319  // Make real NTP start time available in AVFormatContext
2320  if (s->start_time_realtime == AV_NOPTS_VALUE) {
2321  s->start_time_realtime = av_rescale (rtpctx->first_rtcp_ntp_time - (NTP_OFFSET << 32), 1000000, 1LL << 32);
2322  if (rtpctx->st) {
2323  s->start_time_realtime -=
2324  av_rescale_q (rtpctx->rtcp_ts_offset, rtpctx->st->time_base, AV_TIME_BASE_Q);
2325  }
2326  }
2327  }
2328  if (ret == -RTCP_BYE) {
2329  rt->nb_byes++;
2330 
2331  av_log(s, AV_LOG_DEBUG, "Received BYE for stream %d (%d/%d)\n",
2332  rtsp_st->stream_index, rt->nb_byes, rt->nb_rtsp_streams);
2333 
2334  if (rt->nb_byes == rt->nb_rtsp_streams)
2335  return AVERROR_EOF;
2336  }
2337  }
2338  } else if (CONFIG_RTPDEC && rt->ts) {
2339  ret = avpriv_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf, len);
2340  if (ret >= 0) {
2341  if (ret < len) {
2342  rt->recvbuf_len = len;
2343  rt->recvbuf_pos = ret;
2344  rt->cur_transport_priv = rt->ts;
2345  return 1;
2346  } else {
2347  ret = 0;
2348  }
2349  }
2350  } else {
2351  return AVERROR_INVALIDDATA;
2352  }
2353 end:
2354  if (ret < 0)
2355  goto redo;
2356  if (ret == 1)
2357  /* more packets may follow, so we save the RTP context */
2358  rt->cur_transport_priv = rtsp_st->transport_priv;
2359 
2360  return ret;
2361 }
2362 #endif /* CONFIG_RTPDEC */
2363 
2364 #if CONFIG_SDP_DEMUXER
2365 static int sdp_probe(const AVProbeData *p1)
2366 {
2367  const char *p = p1->buf, *p_end = p1->buf + p1->buf_size;
2368 
2369  /* we look for a line beginning "c=IN IP" */
2370  while (p < p_end && *p != '\0') {
2371  if (sizeof("c=IN IP") - 1 < p_end - p &&
2372  av_strstart(p, "c=IN IP", NULL))
2373  return AVPROBE_SCORE_EXTENSION;
2374 
2375  while (p < p_end - 1 && *p != '\n') p++;
2376  if (++p >= p_end)
2377  break;
2378  if (*p == '\r')
2379  p++;
2380  }
2381  return 0;
2382 }
2383 
2384 static void append_source_addrs(char *buf, int size, const char *name,
2385  int count, struct RTSPSource **addrs)
2386 {
2387  int i;
2388  if (!count)
2389  return;
2390  av_strlcatf(buf, size, "&%s=%s", name, addrs[0]->addr);
2391  for (i = 1; i < count; i++)
2392  av_strlcatf(buf, size, ",%s", addrs[i]->addr);
2393 }
2394 
2395 static int sdp_read_header(AVFormatContext *s)
2396 {
2397  RTSPState *rt = s->priv_data;
2398  RTSPStream *rtsp_st;
2399  int size, i, err;
2400  char *content;
2401  char url[MAX_URL_SIZE];
2402 
2403  if (!ff_network_init())
2404  return AVERROR(EIO);
2405 
2406  if (s->max_delay < 0) /* Not set by the caller */
2407  s->max_delay = DEFAULT_REORDERING_DELAY;
2408  if (rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)
2410 
2411  /* read the whole sdp file */
2412  /* XXX: better loading */
2413  content = av_malloc(SDP_MAX_SIZE);
2414  if (!content) {
2415  ff_network_close();
2416  return AVERROR(ENOMEM);
2417  }
2418  size = avio_read(s->pb, content, SDP_MAX_SIZE - 1);
2419  if (size <= 0) {
2420  av_free(content);
2421  ff_network_close();
2422  return AVERROR_INVALIDDATA;
2423  }
2424  content[size] ='\0';
2425 
2426  err = ff_sdp_parse(s, content);
2427  av_freep(&content);
2428  if (err) goto fail;
2429 
2430  /* open each RTP stream */
2431  for (i = 0; i < rt->nb_rtsp_streams; i++) {
2432  char namebuf[50];
2433  rtsp_st = rt->rtsp_streams[i];
2434 
2435  if (!(rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)) {
2436  AVDictionary *opts = map_to_opts(rt);
2437 
2438  err = getnameinfo((struct sockaddr*) &rtsp_st->sdp_ip,
2439  sizeof(rtsp_st->sdp_ip),
2440  namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
2441  if (err) {
2442  av_log(s, AV_LOG_ERROR, "getnameinfo: %s\n", gai_strerror(err));
2443  err = AVERROR(EIO);
2444  av_dict_free(&opts);
2445  goto fail;
2446  }
2447  ff_url_join(url, sizeof(url), "rtp", NULL,
2448  namebuf, rtsp_st->sdp_port,
2449  "?localport=%d&ttl=%d&connect=%d&write_to_source=%d",
2450  rtsp_st->sdp_port, rtsp_st->sdp_ttl,
2451  rt->rtsp_flags & RTSP_FLAG_FILTER_SRC ? 1 : 0,
2452  rt->rtsp_flags & RTSP_FLAG_RTCP_TO_SOURCE ? 1 : 0);
2453 
2454  append_source_addrs(url, sizeof(url), "sources",
2455  rtsp_st->nb_include_source_addrs,
2456  rtsp_st->include_source_addrs);
2457  append_source_addrs(url, sizeof(url), "block",
2458  rtsp_st->nb_exclude_source_addrs,
2459  rtsp_st->exclude_source_addrs);
2460  err = ffurl_open_whitelist(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ,
2461  &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
2462 
2463  av_dict_free(&opts);
2464 
2465  if (err < 0) {
2466  err = AVERROR_INVALIDDATA;
2467  goto fail;
2468  }
2469  }
2470  if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
2471  goto fail;
2472  }
2473  return 0;
2474 fail:
2476  ff_network_close();
2477  return err;
2478 }
2479 
2480 static int sdp_read_close(AVFormatContext *s)
2481 {
2483  ff_network_close();
2484  return 0;
2485 }
2486 
2487 static const AVClass sdp_demuxer_class = {
2488  .class_name = "SDP demuxer",
2489  .item_name = av_default_item_name,
2490  .option = sdp_options,
2491  .version = LIBAVUTIL_VERSION_INT,
2492 };
2493 
2495  .name = "sdp",
2496  .long_name = NULL_IF_CONFIG_SMALL("SDP"),
2497  .priv_data_size = sizeof(RTSPState),
2498  .read_probe = sdp_probe,
2499  .read_header = sdp_read_header,
2501  .read_close = sdp_read_close,
2502  .priv_class = &sdp_demuxer_class,
2503 };
2504 #endif /* CONFIG_SDP_DEMUXER */
2505 
2506 #if CONFIG_RTP_DEMUXER
2507 static int rtp_probe(const AVProbeData *p)
2508 {
2509  if (av_strstart(p->filename, "rtp:", NULL))
2510  return AVPROBE_SCORE_MAX;
2511  return 0;
2512 }
2513 
2514 static int rtp_read_header(AVFormatContext *s)
2515 {
2516  uint8_t recvbuf[RTP_MAX_PACKET_LENGTH];
2517  char host[500], filters_buf[1000];
2518  int ret, port;
2519  URLContext* in = NULL;
2520  int payload_type;
2521  AVCodecParameters *par = NULL;
2522  struct sockaddr_storage addr;
2523  AVIOContext pb;
2524  socklen_t addrlen = sizeof(addr);
2525  RTSPState *rt = s->priv_data;
2526  const char *p;
2527  AVBPrint sdp;
2528  AVDictionary *opts = NULL;
2529 
2530  if (!ff_network_init())
2531  return AVERROR(EIO);
2532 
2533  opts = map_to_opts(rt);
2534  ret = ffurl_open_whitelist(&in, s->url, AVIO_FLAG_READ,
2535  &s->interrupt_callback, &opts, s->protocol_whitelist, s->protocol_blacklist, NULL);
2536  av_dict_free(&opts);
2537  if (ret)
2538  goto fail;
2539 
2540  while (1) {
2541  ret = ffurl_read(in, recvbuf, sizeof(recvbuf));
2542  if (ret == AVERROR(EAGAIN))
2543  continue;
2544  if (ret < 0)
2545  goto fail;
2546  if (ret < 12) {
2547  av_log(s, AV_LOG_WARNING, "Received too short packet\n");
2548  continue;
2549  }
2550 
2551  if ((recvbuf[0] & 0xc0) != 0x80) {
2552  av_log(s, AV_LOG_WARNING, "Unsupported RTP version packet "
2553  "received\n");
2554  continue;
2555  }
2556 
2557  if (RTP_PT_IS_RTCP(recvbuf[1]))
2558  continue;
2559 
2560  payload_type = recvbuf[1] & 0x7f;
2561  break;
2562  }
2563  getsockname(ffurl_get_file_handle(in), (struct sockaddr*) &addr, &addrlen);
2564  ffurl_closep(&in);
2565 
2566  par = avcodec_parameters_alloc();
2567  if (!par) {
2568  ret = AVERROR(ENOMEM);
2569  goto fail;
2570  }
2571 
2572  if (ff_rtp_get_codec_info(par, payload_type)) {
2573  av_log(s, AV_LOG_ERROR, "Unable to receive RTP payload type %d "
2574  "without an SDP file describing it\n",
2575  payload_type);
2576  ret = AVERROR_INVALIDDATA;
2577  goto fail;
2578  }
2579  if (par->codec_type != AVMEDIA_TYPE_DATA) {
2580  av_log(s, AV_LOG_WARNING, "Guessing on RTP content - if not received "
2581  "properly you need an SDP file "
2582  "describing it\n");
2583  }
2584 
2585  av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port,
2586  NULL, 0, s->url);
2587 
2589  av_bprintf(&sdp, "v=0\r\nc=IN IP%d %s\r\n",
2590  addr.ss_family == AF_INET ? 4 : 6, host);
2591 
2592  p = strchr(s->url, '?');
2593  if (p) {
2594  static const char filters[][2][8] = { { "sources", "incl" },
2595  { "block", "excl" } };
2596  int i;
2597  char *q;
2598  for (i = 0; i < FF_ARRAY_ELEMS(filters); i++) {
2599  if (av_find_info_tag(filters_buf, sizeof(filters_buf), filters[i][0], p)) {
2600  q = filters_buf;
2601  while ((q = strchr(q, ',')) != NULL)
2602  *q = ' ';
2603  av_bprintf(&sdp, "a=source-filter:%s IN IP%d %s %s\r\n",
2604  filters[i][1],
2605  addr.ss_family == AF_INET ? 4 : 6, host,
2606  filters_buf);
2607  }
2608  }
2609  }
2610 
2611  av_bprintf(&sdp, "m=%s %d RTP/AVP %d\r\n",
2612  par->codec_type == AVMEDIA_TYPE_DATA ? "application" :
2613  par->codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio",
2614  port, payload_type);
2615  av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sdp.str);
2616  if (!av_bprint_is_complete(&sdp))
2617  goto fail_nobuf;
2619 
2620  ffio_init_context(&pb, sdp.str, sdp.len, 0, NULL, NULL, NULL, NULL);
2621  s->pb = &pb;
2622 
2623  /* if sdp_read_header() fails then following ff_network_close() cancels out */
2624  /* ff_network_init() at the start of this function. Otherwise it cancels out */
2625  /* ff_network_init() inside sdp_read_header() */
2626  ff_network_close();
2627 
2628  rt->media_type_mask = (1 << (AVMEDIA_TYPE_SUBTITLE+1)) - 1;
2629 
2630  ret = sdp_read_header(s);
2631  s->pb = NULL;
2632  av_bprint_finalize(&sdp, NULL);
2633  return ret;
2634 
2635 fail_nobuf:
2636  ret = AVERROR(ENOMEM);
2637  av_log(s, AV_LOG_ERROR, "rtp_read_header(): not enough buffer space for sdp-headers\n");
2638  av_bprint_finalize(&sdp, NULL);
2639 fail:
2641  ffurl_closep(&in);
2642  ff_network_close();
2643  return ret;
2644 }
2645 
2646 static const AVClass rtp_demuxer_class = {
2647  .class_name = "RTP demuxer",
2648  .item_name = av_default_item_name,
2649  .option = rtp_options,
2650  .version = LIBAVUTIL_VERSION_INT,
2651 };
2652 
2654  .name = "rtp",
2655  .long_name = NULL_IF_CONFIG_SMALL("RTP input"),
2656  .priv_data_size = sizeof(RTSPState),
2657  .read_probe = rtp_probe,
2658  .read_header = rtp_read_header,
2660  .read_close = sdp_read_close,
2661  .flags = AVFMT_NOFILE,
2662  .priv_class = &rtp_demuxer_class,
2663 };
2664 #endif /* CONFIG_RTP_DEMUXER */
AVInputFormat ff_sdp_demuxer
AVInputFormat ff_rtp_demuxer
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
uint8_t
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
Main libavformat public API header.
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:453
#define AVFMTCTX_NOHEADER
signal that no header is present (streams are added dynamically)
Definition: avformat.h:1177
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:458
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:451
int ffurl_alloc(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb)
Create a URLContext for accessing to the resource indicated by url, but do not initiate the connectio...
Definition: avio.c:296
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
Definition: avio.c:404
int ff_check_interrupt(AVIOInterruptCB *cb)
Check if the user has requested to interrupt a blocking function associated with cb.
Definition: avio.c:661
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
Definition: avio.c:309
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
Definition: avio.c:441
int ffurl_connect(URLContext *uc, AVDictionary **options)
Connect an URLContext that has been allocated by ffurl_alloc.
Definition: avio.c:169
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
Definition: avio.c:418
int ffurl_get_file_handle(URLContext *h)
Return the file descriptor associated with this URL.
Definition: avio.c:623
int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
Return the file descriptors associated with this URL.
Definition: avio.c:630
int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
Read as many bytes as possible (up to size), calling the read function multiple times if necessary.
Definition: avio.c:411
#define AVIO_FLAG_READ
read-only
Definition: avio.h:674
int avio_read_partial(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:704
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:675
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
Definition: avio.h:676
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:633
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
Definition: aviobuf.c:1195
void ffio_free_dyn_buf(AVIOContext **s)
Free a dynamic buffer.
Definition: aviobuf.c:1457
int ffio_init_context(AVIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Definition: aviobuf.c:88
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
#define AV_RB32
Definition: intreadwrite.h:130
#define AV_RB16
Definition: intreadwrite.h:53
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
#define AV_BPRINT_SIZE_UNLIMITED
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition: bprint.h:185
#define flags(name, subs,...)
Definition: cbs_av1.c:572
#define s(width, name)
Definition: cbs_vp9.c:257
#define fail()
Definition: checkasm.h:133
AVCodecParameters * avcodec_parameters_alloc(void)
Allocate a new AVCodecParameters and set its fields to default values (unknown/invalid/0).
Definition: codec_par.c:51
void avcodec_parameters_free(AVCodecParameters **ppar)
Free an AVCodecParameters instance and everything associated with it and write NULL to the supplied p...
Definition: codec_par.c:61
#define FFMIN(a, b)
Definition: common.h:105
#define CONFIG_RTPDEC
Definition: config.h:689
#define CONFIG_RTSP_MUXER
Definition: config.h:2622
#define NULL
Definition: coverity.c:32
long long int64_t
Definition: coverity.c:34
Public dictionary API.
static av_always_inline void RENAME() interleave(TYPE *dst, TYPE *src0, TYPE *src1, int w2, int add, int shift)
double value
Definition: eval.c:100
const OptionDef options[]
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
@ AV_OPT_TYPE_CONST
Definition: opt.h:234
@ AV_OPT_TYPE_FLAGS
Definition: opt.h:224
@ AV_OPT_TYPE_INT
Definition: opt.h:225
@ AV_OPT_TYPE_BOOL
Definition: opt.h:242
@ AV_OPT_TYPE_STRING
Definition: opt.h:229
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:3501
@ AV_CODEC_ID_MPEG2TS
FAKE codec to indicate a raw MPEG-2 TS stream (only used by libavformat)
Definition: codec_id.h:569
@ AV_CODEC_ID_NONE
Definition: codec_id.h:47
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
Definition: utils.c:4436
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4509
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:4481
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
Definition: mux.c:1274
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
Definition: utils.c:4799
char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
Encode data to base64 and null-terminate.
Definition: base64.c:145
#define AV_BASE64_SIZE(x)
Calculate the output size needed to base64-encode x bytes to a null-terminated string.
Definition: base64.h:66
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:120
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition: dict.c:203
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set that converts the value to a string and stores it.
Definition: dict.c:147
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
Definition: error.h:56
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define AVERROR_EOF
End of file.
Definition: error.h:55
#define AVERROR(e)
Definition: error.h:43
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition: log.h:220
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:215
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:200
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:210
#define AV_LOG_INFO
Standard information.
Definition: log.h:205
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:194
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:237
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:253
AVMediaType
Definition: avutil.h:199
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
@ AVMEDIA_TYPE_DATA
Opaque data information usually continuous.
Definition: avutil.h:203
@ AVMEDIA_TYPE_UNKNOWN
Usually treated as AVMEDIA_TYPE_DATA.
Definition: avutil.h:200
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes,...
Definition: avstring.c:93
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:215
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
Definition: avstring.c:34
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:83
int av_stristart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case.
Definition: avstring.c:45
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
Definition: avstring.c:225
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:260
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:465
void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
Initialize the authentication state based on another HTTP URLContext.
Definition: http.c:184
char * ff_http_auth_create_response(HTTPAuthState *state, const char *auth, const char *path, const char *method)
Definition: httpauth.c:245
void ff_http_auth_handle_header(HTTPAuthState *state, const char *key, const char *value)
Definition: httpauth.c:90
HTTPAuthType
Authentication types, ordered from weakest to strongest.
Definition: httpauth.h:28
@ HTTP_AUTH_NONE
No authentication specified.
Definition: httpauth.h:29
const char * key
int i
Definition: input.c:407
const uint8_t ff_log2_tab[256]
Definition: log2_tab.c:23
#define dynarray_add(tab, nb_ptr, elem)
Definition: internal.h:355
void ff_format_set_url(AVFormatContext *s, char *url)
Set AVFormatContext url field to the provided pointer.
Definition: utils.c:5862
#define SPACE_CHARS
Definition: internal.h:499
#define NTP_OFFSET
Definition: internal.h:399
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4945
#define MAX_URL_SIZE
Definition: internal.h:30
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
#define LIBAVFORMAT_IDENT
Definition: version.h:46
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
const char * desc
Definition: libsvtav1.c:79
static void handler(vbi_event *ev, void *user_data)
void avpriv_mpegts_parse_close(MpegTSContext *ts)
Definition: mpegts.c:3389
int avpriv_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len)
Definition: mpegts.c:3364
MpegTSContext * avpriv_mpegts_parse_open(AVFormatContext *s)
Definition: mpegts.c:3343
int ff_network_init(void)
Definition: network.c:58
void ff_network_close(void)
Definition: network.c:116
#define AI_NUMERICHOST
Definition: network.h:187
#define POLLING_TIME
Definition: network.h:249
#define gai_strerror
Definition: network.h:225
#define NI_NUMERICHOST
Definition: network.h:195
#define getaddrinfo
Definition: network.h:217
#define getnameinfo
Definition: network.h:219
#define freeaddrinfo
Definition: network.h:218
AVOptions.
#define AV_OPT_FLAG_DEPRECATED
set if option is deprecated, users should refer to AVOption.help text for more information
Definition: opt.h:295
miscellaneous OS support macros and functions.
int av_parse_time(int64_t *timeval, const char *timestr, int duration)
Parse timestr and return in *time a corresponding number of microseconds.
Definition: parseutils.c:587
int av_find_info_tag(char *arg, int arg_size, const char *tag1, const char *info)
Attempt to find a specific tag in a URL.
Definition: parseutils.c:751
misc parsing utilities
static const struct PPFilter filters[]
Definition: postprocess.c:134
const char * name
Definition: qsvenc.c:46
mfxU16 profile
Definition: qsvenc.c:45
int ff_rdt_parse_packet(RDTDemuxContext *s, AVPacket *pkt, uint8_t **bufptr, int len)
Parse RDT-style packet data (header + media data).
Definition: rdt.c:337
void ff_rdt_parse_close(RDTDemuxContext *s)
Definition: rdt.c:78
void ff_rdt_calc_response_and_checksum(char response[41], char chksum[9], const char *challenge)
Calculate the response (RealChallenge2 in the RTSP header) to the challenge (RealChallenge1 in the RT...
Definition: rdt.c:94
RDTDemuxContext * ff_rdt_parse_open(AVFormatContext *ic, int first_stream_of_set_idx, void *priv_data, const RTPDynamicProtocolHandler *handler)
Allocate and init the RDT parsing context.
Definition: rdt.c:55
void ff_real_parse_sdp_a_line(AVFormatContext *s, int stream_index, const char *line)
Parse a server-related SDP line.
Definition: rdt.c:517
#define s1
Definition: regdef.h:38
#define th
Definition: regdef.h:75
enum AVMediaType codec_type
Definition: rtp.c:37
int ff_rtp_get_codec_info(AVCodecParameters *par, int payload_type)
Initialize a codec context based on the payload type.
Definition: rtp.c:71
enum AVCodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type)
Return the codec id for the given encoding name and codec type.
Definition: rtp.c:143
const char * ff_rtp_enc_name(int payload_type)
Return the encoding name (as defined in http://www.iana.org/assignments/rtp-parameters) for a given p...
Definition: rtp.c:132
#define RTP_PT_IS_RTCP(x)
Definition: rtp.h:110
@ RTCP_BYE
Definition: rtp.h:100
#define RTP_PT_PRIVATE
Definition: rtp.h:77
const RTPDynamicProtocolHandler * ff_rtp_handler_find_by_id(int id, enum AVMediaType codec_type)
Find a registered rtp dynamic protocol handler with a matching codec ID.
Definition: rtpdec.c:163
const RTPDynamicProtocolHandler * ff_rtp_handler_find_by_name(const char *name, enum AVMediaType codec_type)
Find a registered rtp dynamic protocol handler with the specified name.
Definition: rtpdec.c:149
void ff_rtp_parse_close(RTPDemuxContext *s)
Definition: rtpdec.c:919
void ff_rtp_parse_set_crypto(RTPDemuxContext *s, const char *suite, const char *params)
Definition: rtpdec.c:618
int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, URLContext *fd, AVIOContext *avio, int count)
some rtp servers assume client is dead if they don't hear from them...
Definition: rtpdec.c:302
void ff_rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx, const RTPDynamicProtocolHandler *handler)
Definition: rtpdec.c:611
RTPDemuxContext * ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type, int queue_size)
open a new RTP parse context for stream 'st'.
Definition: rtpdec.c:564
int ff_rtp_send_rtcp_feedback(RTPDemuxContext *s, URLContext *fd, AVIOContext *avio)
Definition: rtpdec.c:459
int ff_rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, uint8_t **bufptr, int len)
Parse an RTP or RTCP packet directly sent as a buffer.
Definition: rtpdec.c:906
int64_t ff_rtp_queued_packet_time(RTPDemuxContext *s)
Definition: rtpdec.c:792
#define RTP_REORDER_QUEUE_DEFAULT_SIZE
Definition: rtpdec.h:38
int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size)
#define RTP_MAX_PACKET_LENGTH
Definition: rtpdec.h:36
int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
Parse a Windows Media Server-specific SDP line.
Definition: rtpdec_asf.c:100
const RTPDynamicProtocolHandler ff_mpegts_dynamic_handler
Definition: rtpdec_mpegts.c:92
static int parse_fmtp(AVFormatContext *s, AVStream *stream, PayloadContext *data, const char *attr, const char *value)
Definition: rtpdec_latm.c:134
#define FF_RTP_FLAG_OPTS(ctx, fieldname)
Definition: rtpenc.h:74
int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s, AVStream *st, URLContext *handle, int packet_size, int idx)
Definition: rtpenc_chain.c:28
int ff_rtp_get_local_rtp_port(URLContext *h)
Return the local rtp port used by the RTP connection.
Definition: rtpproto.c:528
int ff_rtp_set_remote_url(URLContext *h, const char *uri)
If no filename is given to av_open_input_file because you want to get the local port first,...
Definition: rtpproto.c:103
static const AVOption sdp_options[]
Definition: rtsp.c:111
static void get_word_until_chars(char *buf, int buf_size, const char *sep, const char **pp)
Definition: rtsp.c:143
#define DEFAULT_REORDERING_DELAY
Definition: rtsp.c:57
int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
Open RTSP transport context.
Definition: rtsp.c:829
static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
Parse a string p in the form of Range:npt=xx-xx, and determine the start and end time.
Definition: rtsp.c:178
#define COMMON_OPTS()
Definition: rtsp.c:74
static void get_word_sep(char *buf, int buf_size, const char *sep, const char **pp)
Definition: rtsp.c:162
#define ENC
Definition: rtsp.c:61
static const AVOption rtp_options[]
Definition: rtsp.c:121
static void get_word(char *buf, int buf_size, const char **pp)
Definition: rtsp.c:169
static int get_sockaddr(AVFormatContext *s, const char *buf, struct sockaddr_storage *sock)
Definition: rtsp.c:200
const AVOption ff_rtsp_options[]
Definition: rtsp.c:80
void ff_rtsp_close_streams(AVFormatContext *s)
Close and free all streams within the RTSP (de)muxer.
Definition: rtsp.c:793
#define RECVBUF_SIZE
Definition: rtsp.c:56
#define OFFSET(x)
Definition: rtsp.c:59
#define READ_PACKET_TIMEOUT_S
Definition: rtsp.c:55
#define RTSP_FLAG_OPTS(name, longname)
Definition: rtsp.c:63
static AVDictionary * map_to_opts(RTSPState *rt)
Definition: rtsp.c:130
void ff_rtsp_undo_setup(AVFormatContext *s, int send_packets)
Undo the effect of ff_rtsp_make_setup_request, close the transport_priv and rtp_handle fields.
Definition: rtsp.c:761
#define RTSP_MEDIATYPE_OPTS(name, longname)
Definition: rtsp.c:67
#define DEC
Definition: rtsp.c:60
void ff_rtsp_skip_packet(AVFormatContext *s)
Skip a RTP/TCP interleaved packet.
int ff_sdp_parse(AVFormatContext *s, const char *content)
Parse an SDP description of streams by populating an RTSPState struct within the AVFormatContext; als...
#define RTSP_FLAG_LISTEN
Wait for incoming connections.
Definition: rtsp.h:427
@ RTSP_SERVER_SATIP
SAT>IP server.
Definition: rtsp.h:218
@ RTSP_SERVER_WMS
Windows Media server.
Definition: rtsp.h:217
@ RTSP_SERVER_RTP
Standards-compliant RTP-server.
Definition: rtsp.h:215
@ RTSP_SERVER_REAL
Realmedia-style server.
Definition: rtsp.h:216
int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url, const char *headers, RTSPMessageHeader *reply, unsigned char **content_ptr)
Send a command to the RTSP server and wait for the reply.
#define RTSP_DEFAULT_NB_AUDIO_CHANNELS
Definition: rtsp.h:78
int ff_rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply)
Get the description of the stream and set up the RTSPStream child objects.
Definition: rtspdec.c:604
#define RTSP_FLAG_SATIP_RAW
Export SAT>IP stream as raw MPEG-TS.
Definition: rtsp.h:432
int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply, unsigned char **content_ptr, int return_on_interleaved_data, const char *method)
Read a RTSP message from the server, or prepare to read data packets if we're reading data interleave...
int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port, int lower_transport, const char *real_challenge)
Do the SETUP requests for each stream for the chosen lower transport mode.
#define RTSP_DEFAULT_AUDIO_SAMPLERATE
Definition: rtsp.h:79
int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method, const char *url, const char *headers)
Send a command to the RTSP server without waiting for the reply.
#define RTSP_FLAG_FILTER_SRC
Filter incoming UDP packets - receive packets only from the right source address and port.
Definition: rtsp.h:424
#define RTSP_TCP_MAX_PACKET_SIZE
Definition: rtsp.h:77
#define RTSP_FLAG_CUSTOM_IO
Do all IO via the AVIOContext.
Definition: rtsp.h:428
int ff_rtsp_fetch_packet(AVFormatContext *s, AVPacket *pkt)
Receive one packet from the RTSPStreams set up in the AVFormatContext (which should contain a RTSPSta...
#define RTSP_MAX_TRANSPORTS
Definition: rtsp.h:76
void ff_rtsp_parse_line(AVFormatContext *s, RTSPMessageHeader *reply, const char *buf, RTSPState *rt, const char *method)
#define RTSPS_DEFAULT_PORT
Definition: rtsp.h:75
@ RTSP_LOWER_TRANSPORT_TCP
TCP; interleaved in RTSP.
Definition: rtsp.h:40
@ RTSP_LOWER_TRANSPORT_HTTP
HTTP tunneled - not a proper transport mode as such, only for use via AVOptions.
Definition: rtsp.h:43
@ RTSP_LOWER_TRANSPORT_NB
Definition: rtsp.h:42
@ RTSP_LOWER_TRANSPORT_UDP_MULTICAST
UDP/multicast.
Definition: rtsp.h:41
@ RTSP_LOWER_TRANSPORT_CUSTOM
Custom IO - not a public option for lower_transport_mask, but set in the SDP demuxer based on a flag.
Definition: rtsp.h:47
@ RTSP_LOWER_TRANSPORT_UDP
UDP/unicast.
Definition: rtsp.h:39
@ RTSP_LOWER_TRANSPORT_HTTPS
HTTPS tunneled.
Definition: rtsp.h:46
int ff_rtsp_parse_streaming_commands(AVFormatContext *s)
Parse RTSP commands (OPTIONS, PAUSE and TEARDOWN) during streaming in listen mode.
Definition: rtspdec.c:475
#define RTSP_RTP_PORT_MIN
Definition: rtsp.h:80
@ RTSP_MODE_PLAIN
Normal RTSP.
Definition: rtsp.h:70
@ RTSP_MODE_TUNNEL
RTSP over HTTP (tunneling)
Definition: rtsp.h:71
void ff_rtsp_close_connections(AVFormatContext *s)
Close all connection handles within the RTSP (de)muxer.
@ RTSP_STATE_STREAMING
initialized and sending/receiving data
Definition: rtsp.h:205
@ RTSP_STATE_IDLE
not initialized
Definition: rtsp.h:204
#define RTSP_FLAG_PREFER_TCP
Try RTP via TCP first if possible.
Definition: rtsp.h:431
int ff_rtsp_send_cmd_with_content(AVFormatContext *s, const char *method, const char *url, const char *headers, RTSPMessageHeader *reply, unsigned char **content_ptr, const unsigned char *send_content, int send_content_length)
Send a command to the RTSP server and wait for the reply.
int ff_rtsp_tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
Send buffered packets over TCP.
Definition: rtspenc.c:141
#define SDP_MAX_SIZE
Definition: rtsp.h:82
#define RTSP_DEFAULT_PORT
Definition: rtsp.h:74
int ff_rtsp_tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, uint8_t *buf, int buf_size)
Receive one RTP packet from an TCP interleaved RTSP stream.
Definition: rtspdec.c:775
#define RTSP_RTP_PORT_MAX
Definition: rtsp.h:81
int ff_rtsp_connect(AVFormatContext *s)
Connect to the RTSP server and set up the individual media streams.
@ RTSP_TRANSPORT_RTP
Standards-compliant RTP.
Definition: rtsp.h:59
@ RTSP_TRANSPORT_RAW
Raw data (over UDP)
Definition: rtsp.h:61
@ RTSP_TRANSPORT_RDT
Realmedia Data Transport.
Definition: rtsp.h:60
int ff_rtsp_setup_output_streams(AVFormatContext *s, const char *addr)
Announce the stream to the server and set up the RTSPStream child objects for each media stream.
Definition: rtspenc.c:45
#define RTSP_FLAG_RTCP_TO_SOURCE
Send RTCP packets to the source address of received packets.
Definition: rtsp.h:429
@ RTSP_STATUS_OK
Definition: rtspcodes.h:33
static int ff_rtsp_averror(enum RTSPStatusCode status_code, int default_averror)
Definition: rtspcodes.h:144
static const uint8_t header[24]
Definition: sdr2.c:67
#define FF_ARRAY_ELEMS(a)
#define snprintf
Definition: snprintf.h:34
Describe the class of an AVClass context structure.
Definition: log.h:67
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
This struct describes the properties of a single codec described by an AVCodecID.
Definition: codec_desc.h:38
This struct describes the properties of an encoded stream.
Definition: codec_par.h:52
int channels
Audio only.
Definition: codec_par.h:166
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
int sample_rate
Audio only.
Definition: codec_par.h:170
Format I/O context.
Definition: avformat.h:1232
AVIOContext * pb
I/O context.
Definition: avformat.h:1274
Bytestream IO Context.
Definition: avio.h:161
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
AVOption.
Definition: opt.h:248
This structure stores compressed data.
Definition: packet.h:346
This structure contains the data a format has to probe a file.
Definition: avformat.h:441
const char * filename
Definition: avformat.h:442
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:444
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:443
Stream structure.
Definition: avformat.h:873
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1038
AVDictionary * metadata
Definition: avformat.h:937
int id
Format-specific stream ID.
Definition: avformat.h:880
int index
stream index in AVFormatContext
Definition: avformat.h:874
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:902
enum AVStreamParseType need_parsing
Definition: avformat.h:1081
int stale
Auth ok, but needs to be resent with a new nonce.
Definition: httpauth.h:71
int auth_type
The currently chosen auth type.
Definition: httpauth.h:59
uint64_t first_rtcp_ntp_time
Definition: rtpdec.h:177
uint32_t base_timestamp
Definition: rtpdec.h:154
uint32_t ssrc
Definition: rtpdec.h:151
int64_t rtcp_ts_offset
Definition: rtpdec.h:179
AVStream * st
Definition: rtpdec.h:149
int(* parse_sdp_a_line)(AVFormatContext *s, int st_index, PayloadContext *priv_data, const char *line)
Parse the a= line from the sdp field.
Definition: rtpdec.h:128
void(* close)(PayloadContext *protocol_data)
Free any data needed by the rtp parsing for this dynamic data.
Definition: rtpdec.h:133
int(* init)(AVFormatContext *s, int st_index, PayloadContext *priv_data)
Initialize dynamic protocol handler, called after the full rtpmap line is parsed, may be null.
Definition: rtpdec.h:126
This describes the server response to each RTSP command.
Definition: rtsp.h:130
char reason[256]
The "reason" is meant to specify better the meaning of the error code returned.
Definition: rtsp.h:185
char real_challenge[64]
the "RealChallenge1:" field from the server
Definition: rtsp.h:158
char location[4096]
the "Location:" field.
Definition: rtsp.h:155
int notice
The "Notice" or "X-Notice" field value.
Definition: rtsp.h:180
int64_t range_start
Time range of the streams that the server will stream.
Definition: rtsp.h:141
int timeout
The "timeout" comes as part of the server response to the "SETUP" command, in the "Session: <xyz>[;ti...
Definition: rtsp.h:175
char session_id[512]
the "Session:" field.
Definition: rtsp.h:151
char server[64]
the "Server: field, which can be used to identify some special-case servers that are not 100% standar...
Definition: rtsp.h:167
enum RTSPStatusCode status_code
response code from server
Definition: rtsp.h:134
int seq
sequence number
Definition: rtsp.h:147
char content_type[64]
Content type header.
Definition: rtsp.h:190
RTSPTransportField transports[RTSP_MAX_TRANSPORTS]
describes the complete "Transport:" line of the server in response to a SETUP RTSP command by the cli...
Definition: rtsp.h:145
int64_t range_end
Definition: rtsp.h:141
char stream_id[64]
SAT>IP com.ses.streamID header.
Definition: rtsp.h:195
int nb_transports
number of items in the 'transports' variable below
Definition: rtsp.h:137
int content_length
length of the data following this header
Definition: rtsp.h:132
char addr[128]
Source-specific multicast include source IP address (from SDP content)
Definition: rtsp.h:435
Private data for the RTSP demuxer.
Definition: rtsp.h:227
char real_challenge[64]
the "RealChallenge1:" field from the server
Definition: rtsp.h:279
int recvbuf_len
Definition: rtsp.h:332
int nb_rtsp_streams
number of items in the 'rtsp_streams' variable
Definition: rtsp.h:232
enum RTSPTransport transport
the negotiated data/packet transport protocol; e.g.
Definition: rtsp.h:267
int rtp_port_max
Definition: rtsp.h:397
AVFormatContext * asf_ctx
The following are used for RTP/ASF streams.
Definition: rtsp.h:316
int timeout
copy of RTSPMessageHeader->timeout, i.e.
Definition: rtsp.h:259
int accept_dynamic_rate
Whether the server accepts the x-Dynamic-Rate header.
Definition: rtsp.h:382
HTTPAuthState auth_state
authentication state
Definition: rtsp.h:285
int initial_timeout
Timeout to wait for incoming connections.
Definition: rtsp.h:402
URLContext * rtsp_hd_out
Additional output handle, used when input and output are done separately, eg for HTTP tunneling.
Definition: rtsp.h:337
int lower_transport_mask
A mask with all requested transport methods.
Definition: rtsp.h:353
enum RTSPLowerTransport lower_transport
the negotiated network layer transport protocol; e.g.
Definition: rtsp.h:271
int max_p
Definition: rtsp.h:364
int64_t last_cmd_time
timestamp of the last RTSP command that we sent to the RTSP server.
Definition: rtsp.h:264
int need_subscription
The following are used for Real stream selection.
Definition: rtsp.h:297
char session_id[512]
copy of RTSPMessageHeader->session_id, i.e.
Definition: rtsp.h:254
int media_type_mask
Mask of all requested media types.
Definition: rtsp.h:392
struct MpegTSContext * ts
The following are used for parsing raw mpegts in udp.
Definition: rtsp.h:330
enum RTSPServerType server_type
brand of server that we're talking to; e.g.
Definition: rtsp.h:276
uint8_t * recvbuf
Reusable buffer for receiving packets.
Definition: rtsp.h:348
char * user_agent
User-Agent string.
Definition: rtsp.h:417
int rtsp_flags
Various option flags for the RTSP muxer/demuxer.
Definition: rtsp.h:387
int64_t seek_timestamp
the seek value requested when calling av_seek_frame().
Definition: rtsp.h:248
char control_uri[MAX_URL_SIZE]
some MS RTSP streams contain a URL in the SDP that we need to use for all subsequent RTSP requests,...
Definition: rtsp.h:326
enum RTSPControlTransport control_transport
RTSP transport mode, such as plain or tunneled.
Definition: rtsp.h:340
void * cur_transport_priv
RTSPStream->transport_priv of the last stream that we read a packet from.
Definition: rtsp.h:292
int buffer_size
Definition: rtsp.h:420
int reordering_queue_size
Size of RTP packet reordering queue.
Definition: rtsp.h:412
char auth[128]
plaintext authorization line (username:password)
Definition: rtsp.h:282
URLContext * rtsp_hd
Definition: rtsp.h:229
int rtp_port_min
Minimum and maximum local UDP ports.
Definition: rtsp.h:397
enum RTSPClientState state
indicator of whether we are currently receiving data from the server.
Definition: rtsp.h:240
int recvbuf_pos
Definition: rtsp.h:331
int seq
RTSP command sequence number.
Definition: rtsp.h:250
int stimeout
timeout of socket i/o operations.
Definition: rtsp.h:407
int pkt_size
Definition: rtsp.h:421
int nb_byes
Definition: rtsp.h:345
struct RTSPStream ** rtsp_streams
streams in this session
Definition: rtsp.h:234
char default_lang[4]
Definition: rtsp.h:419
struct pollfd * p
Polling array for udp.
Definition: rtsp.h:363
int get_parameter_supported
Whether the server supports the GET_PARAMETER method.
Definition: rtsp.h:369
char last_reply[2048]
The last reply of the server to a RTSP command.
Definition: rtsp.h:288
Describe a single stream, as identified by a single m= line block in the SDP content.
Definition: rtsp.h:444
struct RTSPSource ** exclude_source_addrs
Source-specific multicast exclude source IP addresses (from SDP content)
Definition: rtsp.h:464
char crypto_suite[40]
Definition: rtsp.h:484
int sdp_ttl
IP Time-To-Live (from SDP content)
Definition: rtsp.h:465
const RTPDynamicProtocolHandler * dynamic_handler
The following are used for dynamic protocols (rtpdec_*.c/rdt.c)
Definition: rtsp.h:472
int sdp_port
The following are used only in SDP, not RTSP.
Definition: rtsp.h:459
int nb_include_source_addrs
Number of source-specific multicast include source IP addresses (from SDP content)
Definition: rtsp.h:461
char crypto_params[100]
Definition: rtsp.h:485
int interleaved_min
interleave IDs; copies of RTSPTransportField->interleaved_min/max for the selected transport.
Definition: rtsp.h:453
char control_url[MAX_URL_SIZE]
url for this stream (from SDP)
Definition: rtsp.h:455
int sdp_payload_type
payload type
Definition: rtsp.h:466
URLContext * rtp_handle
RTP stream handle (if UDP)
Definition: rtsp.h:445
int interleaved_max
Definition: rtsp.h:453
int stream_index
corresponding stream index, if any.
Definition: rtsp.h:449
struct RTSPSource ** include_source_addrs
Source-specific multicast include source IP addresses (from SDP content)
Definition: rtsp.h:462
int feedback
Enable sending RTCP feedback messages according to RFC 4585.
Definition: rtsp.h:479
PayloadContext * dynamic_protocol_context
private data associated with the dynamic protocol
Definition: rtsp.h:475
void * transport_priv
RTP/RDT parse context if input, RTP AVFormatContext if output.
Definition: rtsp.h:446
uint32_t ssrc
SSRC for this stream, to allow identifying RTCP packets before the first RTP packet.
Definition: rtsp.h:482
int nb_exclude_source_addrs
Number of source-specific multicast exclude source IP addresses (from SDP content)
Definition: rtsp.h:463
struct sockaddr_storage sdp_ip
IP address (from SDP content)
Definition: rtsp.h:460
This describes a single item in the "Transport:" line of one stream as negotiated by the SETUP RTSP c...
Definition: rtsp.h:91
int server_port_min
UDP unicast server port range; the ports to which we should connect to receive unicast UDP RTP/RTCP d...
Definition: rtsp.h:108
int interleaved_max
Definition: rtsp.h:96
int client_port_min
UDP client ports; these should be the local ports of the UDP RTP (and RTCP) sockets over which we rec...
Definition: rtsp.h:104
char source[INET6_ADDRSTRLEN+1]
source IP address
Definition: rtsp.h:118
enum RTSPTransport transport
data/packet transport protocol; e.g.
Definition: rtsp.h:121
struct sockaddr_storage destination
destination IP address
Definition: rtsp.h:117
int ttl
time-to-live value (required for multicast); the amount of HOPs that packets will be allowed to make ...
Definition: rtsp.h:112
enum RTSPLowerTransport lower_transport
network layer transport protocol; e.g.
Definition: rtsp.h:124
int port_min
UDP multicast port range; the ports to which we should connect to receive multicast UDP data.
Definition: rtsp.h:100
int interleaved_min
interleave ids, if TCP transport; each TCP/RTSP data packet starts with a '$', stream length and stre...
Definition: rtsp.h:96
Definition: url.h:38
void * priv_data
Definition: url.h:41
const char * protocol_whitelist
Definition: url.h:49
const char * protocol_blacklist
Definition: url.h:50
int ai_flags
Definition: network.h:138
Definition: graph2dot.c:48
uint16_t ss_family
Definition: network.h:116
#define av_free(p)
#define av_malloc_array(a, b)
#define av_freep(p)
#define av_malloc(s)
#define av_log(a,...)
AVPacket * pkt
Definition: movenc.c:59
AVDictionary * opts
Definition: movenc.c:50
int64_t av_gettime_relative(void)
Get the current time in microseconds since some unspecified starting point.
Definition: time.c:56
int size
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
Definition: url.c:38
unbuffered private I/O API
int len