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