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