You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2246 lines
82KB

  1. /*
  2. * RTSP/SDP client
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avassert.h"
  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. #if HAVE_POLL_H
  34. #include <poll.h>
  35. #endif
  36. #include "internal.h"
  37. #include "network.h"
  38. #include "os_support.h"
  39. #include "http.h"
  40. #include "rtsp.h"
  41. #include "rtpdec.h"
  42. #include "rdt.h"
  43. #include "rtpdec_formats.h"
  44. #include "rtpenc_chain.h"
  45. #include "url.h"
  46. #include "rtpenc.h"
  47. #include "mpegts.h"
  48. //#define DEBUG
  49. /* Timeout values for socket poll, in ms,
  50. * and read_packet(), in seconds */
  51. #define POLL_TIMEOUT_MS 100
  52. #define READ_PACKET_TIMEOUT_S 10
  53. #define MAX_TIMEOUTS READ_PACKET_TIMEOUT_S * 1000 / POLL_TIMEOUT_MS
  54. #define SDP_MAX_SIZE 16384
  55. #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH
  56. #define DEFAULT_REORDERING_DELAY 100000
  57. #define OFFSET(x) offsetof(RTSPState, x)
  58. #define DEC AV_OPT_FLAG_DECODING_PARAM
  59. #define ENC AV_OPT_FLAG_ENCODING_PARAM
  60. #define RTSP_FLAG_OPTS(name, longname) \
  61. { name, longname, OFFSET(rtsp_flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC, "rtsp_flags" }, \
  62. { "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" }, \
  63. { "listen", "Wait for incoming connections", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_LISTEN}, 0, 0, DEC, "rtsp_flags" }
  64. #define RTSP_MEDIATYPE_OPTS(name, longname) \
  65. { 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" }, \
  66. { "video", "Video", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_VIDEO}, 0, 0, DEC, "allowed_media_types" }, \
  67. { "audio", "Audio", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_AUDIO}, 0, 0, DEC, "allowed_media_types" }, \
  68. { "data", "Data", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_DATA}, 0, 0, DEC, "allowed_media_types" }
  69. #define RTSP_REORDERING_OPTS() \
  70. { "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 }
  71. const AVOption ff_rtsp_options[] = {
  72. { "initial_pause", "Don't start playing the stream immediately", OFFSET(initial_pause), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC },
  73. FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
  74. { "rtsp_transport", "RTSP transport protocols", OFFSET(lower_transport_mask), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC|ENC, "rtsp_transport" }, \
  75. { "udp", "UDP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
  76. { "tcp", "TCP", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_TCP}, 0, 0, DEC|ENC, "rtsp_transport" }, \
  77. { "udp_multicast", "UDP multicast", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << RTSP_LOWER_TRANSPORT_UDP_MULTICAST}, 0, 0, DEC, "rtsp_transport" },
  78. { "http", "HTTP tunneling", 0, AV_OPT_TYPE_CONST, {.i64 = (1 << RTSP_LOWER_TRANSPORT_HTTP)}, 0, 0, DEC, "rtsp_transport" },
  79. RTSP_FLAG_OPTS("rtsp_flags", "RTSP flags"),
  80. RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
  81. { "min_port", "Minimum local UDP port", OFFSET(rtp_port_min), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MIN}, 0, 65535, DEC|ENC },
  82. { "max_port", "Maximum local UDP port", OFFSET(rtp_port_max), AV_OPT_TYPE_INT, {.i64 = RTSP_RTP_PORT_MAX}, 0, 65535, DEC|ENC },
  83. { "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 },
  84. { "stimeout", "timeout (in micro seconds) of socket i/o operations.", OFFSET(stimeout), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC },
  85. RTSP_REORDERING_OPTS(),
  86. { NULL },
  87. };
  88. static const AVOption sdp_options[] = {
  89. RTSP_FLAG_OPTS("sdp_flags", "SDP flags"),
  90. { "custom_io", "Use custom IO", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_CUSTOM_IO}, 0, 0, DEC, "rtsp_flags" },
  91. RTSP_MEDIATYPE_OPTS("allowed_media_types", "Media types to accept from the server"),
  92. RTSP_REORDERING_OPTS(),
  93. { NULL },
  94. };
  95. static const AVOption rtp_options[] = {
  96. RTSP_FLAG_OPTS("rtp_flags", "RTP flags"),
  97. RTSP_REORDERING_OPTS(),
  98. { NULL },
  99. };
  100. static void get_word_until_chars(char *buf, int buf_size,
  101. const char *sep, const char **pp)
  102. {
  103. const char *p;
  104. char *q;
  105. p = *pp;
  106. p += strspn(p, SPACE_CHARS);
  107. q = buf;
  108. while (!strchr(sep, *p) && *p != '\0') {
  109. if ((q - buf) < buf_size - 1)
  110. *q++ = *p;
  111. p++;
  112. }
  113. if (buf_size > 0)
  114. *q = '\0';
  115. *pp = p;
  116. }
  117. static void get_word_sep(char *buf, int buf_size, const char *sep,
  118. const char **pp)
  119. {
  120. if (**pp == '/') (*pp)++;
  121. get_word_until_chars(buf, buf_size, sep, pp);
  122. }
  123. static void get_word(char *buf, int buf_size, const char **pp)
  124. {
  125. get_word_until_chars(buf, buf_size, SPACE_CHARS, pp);
  126. }
  127. /** Parse a string p in the form of Range:npt=xx-xx, and determine the start
  128. * and end time.
  129. * Used for seeking in the rtp stream.
  130. */
  131. static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
  132. {
  133. char buf[256];
  134. p += strspn(p, SPACE_CHARS);
  135. if (!av_stristart(p, "npt=", &p))
  136. return;
  137. *start = AV_NOPTS_VALUE;
  138. *end = AV_NOPTS_VALUE;
  139. get_word_sep(buf, sizeof(buf), "-", &p);
  140. av_parse_time(start, buf, 1);
  141. if (*p == '-') {
  142. p++;
  143. get_word_sep(buf, sizeof(buf), "-", &p);
  144. av_parse_time(end, buf, 1);
  145. }
  146. }
  147. static int get_sockaddr(const char *buf, struct sockaddr_storage *sock)
  148. {
  149. struct addrinfo hints = { 0 }, *ai = NULL;
  150. hints.ai_flags = AI_NUMERICHOST;
  151. if (getaddrinfo(buf, NULL, &hints, &ai))
  152. return -1;
  153. memcpy(sock, ai->ai_addr, FFMIN(sizeof(*sock), ai->ai_addrlen));
  154. freeaddrinfo(ai);
  155. return 0;
  156. }
  157. #if CONFIG_RTPDEC
  158. static void init_rtp_handler(RTPDynamicProtocolHandler *handler,
  159. RTSPStream *rtsp_st, AVCodecContext *codec)
  160. {
  161. if (!handler)
  162. return;
  163. if (codec)
  164. codec->codec_id = handler->codec_id;
  165. rtsp_st->dynamic_handler = handler;
  166. if (handler->alloc) {
  167. rtsp_st->dynamic_protocol_context = handler->alloc();
  168. if (!rtsp_st->dynamic_protocol_context)
  169. rtsp_st->dynamic_handler = NULL;
  170. }
  171. }
  172. /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other params>] */
  173. static int sdp_parse_rtpmap(AVFormatContext *s,
  174. AVStream *st, RTSPStream *rtsp_st,
  175. int payload_type, const char *p)
  176. {
  177. AVCodecContext *codec = st->codec;
  178. char buf[256];
  179. int i;
  180. AVCodec *c;
  181. const char *c_name;
  182. /* See if we can handle this kind of payload.
  183. * The space should normally not be there but some Real streams or
  184. * particular servers ("RealServer Version 6.1.3.970", see issue 1658)
  185. * have a trailing space. */
  186. get_word_sep(buf, sizeof(buf), "/ ", &p);
  187. if (payload_type < RTP_PT_PRIVATE) {
  188. /* We are in a standard case
  189. * (from http://www.iana.org/assignments/rtp-parameters). */
  190. codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
  191. }
  192. if (codec->codec_id == AV_CODEC_ID_NONE) {
  193. RTPDynamicProtocolHandler *handler =
  194. ff_rtp_handler_find_by_name(buf, codec->codec_type);
  195. init_rtp_handler(handler, rtsp_st, codec);
  196. /* If no dynamic handler was found, check with the list of standard
  197. * allocated types, if such a stream for some reason happens to
  198. * use a private payload type. This isn't handled in rtpdec.c, since
  199. * the format name from the rtpmap line never is passed into rtpdec. */
  200. if (!rtsp_st->dynamic_handler)
  201. codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
  202. }
  203. c = avcodec_find_decoder(codec->codec_id);
  204. if (c && c->name)
  205. c_name = c->name;
  206. else
  207. c_name = "(null)";
  208. get_word_sep(buf, sizeof(buf), "/", &p);
  209. i = atoi(buf);
  210. switch (codec->codec_type) {
  211. case AVMEDIA_TYPE_AUDIO:
  212. av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name);
  213. codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE;
  214. codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS;
  215. if (i > 0) {
  216. codec->sample_rate = i;
  217. avpriv_set_pts_info(st, 32, 1, codec->sample_rate);
  218. get_word_sep(buf, sizeof(buf), "/", &p);
  219. i = atoi(buf);
  220. if (i > 0)
  221. codec->channels = i;
  222. }
  223. av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n",
  224. codec->sample_rate);
  225. av_log(s, AV_LOG_DEBUG, "audio channels set to: %i\n",
  226. codec->channels);
  227. break;
  228. case AVMEDIA_TYPE_VIDEO:
  229. av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name);
  230. if (i > 0)
  231. avpriv_set_pts_info(st, 32, 1, i);
  232. break;
  233. default:
  234. break;
  235. }
  236. if (rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->init)
  237. rtsp_st->dynamic_handler->init(s, st->index,
  238. rtsp_st->dynamic_protocol_context);
  239. return 0;
  240. }
  241. /* parse the attribute line from the fmtp a line of an sdp response. This
  242. * is broken out as a function because it is used in rtp_h264.c, which is
  243. * forthcoming. */
  244. int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
  245. char *value, int value_size)
  246. {
  247. *p += strspn(*p, SPACE_CHARS);
  248. if (**p) {
  249. get_word_sep(attr, attr_size, "=", p);
  250. if (**p == '=')
  251. (*p)++;
  252. get_word_sep(value, value_size, ";", p);
  253. if (**p == ';')
  254. (*p)++;
  255. return 1;
  256. }
  257. return 0;
  258. }
  259. typedef struct SDPParseState {
  260. /* SDP only */
  261. struct sockaddr_storage default_ip;
  262. int default_ttl;
  263. int skip_media; ///< set if an unknown m= line occurs
  264. } SDPParseState;
  265. static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
  266. int letter, const char *buf)
  267. {
  268. RTSPState *rt = s->priv_data;
  269. char buf1[64], st_type[64];
  270. const char *p;
  271. enum AVMediaType codec_type;
  272. int payload_type, i;
  273. AVStream *st;
  274. RTSPStream *rtsp_st;
  275. struct sockaddr_storage sdp_ip;
  276. int ttl;
  277. av_dlog(s, "sdp: %c='%s'\n", letter, buf);
  278. p = buf;
  279. if (s1->skip_media && letter != 'm')
  280. return;
  281. switch (letter) {
  282. case 'c':
  283. get_word(buf1, sizeof(buf1), &p);
  284. if (strcmp(buf1, "IN") != 0)
  285. return;
  286. get_word(buf1, sizeof(buf1), &p);
  287. if (strcmp(buf1, "IP4") && strcmp(buf1, "IP6"))
  288. return;
  289. get_word_sep(buf1, sizeof(buf1), "/", &p);
  290. if (get_sockaddr(buf1, &sdp_ip))
  291. return;
  292. ttl = 16;
  293. if (*p == '/') {
  294. p++;
  295. get_word_sep(buf1, sizeof(buf1), "/", &p);
  296. ttl = atoi(buf1);
  297. }
  298. if (s->nb_streams == 0) {
  299. s1->default_ip = sdp_ip;
  300. s1->default_ttl = ttl;
  301. } else {
  302. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  303. rtsp_st->sdp_ip = sdp_ip;
  304. rtsp_st->sdp_ttl = ttl;
  305. }
  306. break;
  307. case 's':
  308. av_dict_set(&s->metadata, "title", p, 0);
  309. break;
  310. case 'i':
  311. if (s->nb_streams == 0) {
  312. av_dict_set(&s->metadata, "comment", p, 0);
  313. break;
  314. }
  315. break;
  316. case 'm':
  317. /* new stream */
  318. s1->skip_media = 0;
  319. codec_type = AVMEDIA_TYPE_UNKNOWN;
  320. get_word(st_type, sizeof(st_type), &p);
  321. if (!strcmp(st_type, "audio")) {
  322. codec_type = AVMEDIA_TYPE_AUDIO;
  323. } else if (!strcmp(st_type, "video")) {
  324. codec_type = AVMEDIA_TYPE_VIDEO;
  325. } else if (!strcmp(st_type, "application")) {
  326. codec_type = AVMEDIA_TYPE_DATA;
  327. }
  328. if (codec_type == AVMEDIA_TYPE_UNKNOWN || !(rt->media_type_mask & (1 << codec_type))) {
  329. s1->skip_media = 1;
  330. return;
  331. }
  332. rtsp_st = av_mallocz(sizeof(RTSPStream));
  333. if (!rtsp_st)
  334. return;
  335. rtsp_st->stream_index = -1;
  336. dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
  337. rtsp_st->sdp_ip = s1->default_ip;
  338. rtsp_st->sdp_ttl = s1->default_ttl;
  339. get_word(buf1, sizeof(buf1), &p); /* port */
  340. rtsp_st->sdp_port = atoi(buf1);
  341. get_word(buf1, sizeof(buf1), &p); /* protocol */
  342. if (!strcmp(buf1, "udp"))
  343. rt->transport = RTSP_TRANSPORT_RAW;
  344. else if (strstr(buf1, "/AVPF") || strstr(buf1, "/SAVPF"))
  345. rtsp_st->feedback = 1;
  346. /* XXX: handle list of formats */
  347. get_word(buf1, sizeof(buf1), &p); /* format list */
  348. rtsp_st->sdp_payload_type = atoi(buf1);
  349. if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) {
  350. /* no corresponding stream */
  351. if (rt->transport == RTSP_TRANSPORT_RAW) {
  352. if (!rt->ts && CONFIG_RTPDEC)
  353. rt->ts = ff_mpegts_parse_open(s);
  354. } else {
  355. RTPDynamicProtocolHandler *handler;
  356. handler = ff_rtp_handler_find_by_id(
  357. rtsp_st->sdp_payload_type, AVMEDIA_TYPE_DATA);
  358. init_rtp_handler(handler, rtsp_st, NULL);
  359. if (handler && handler->init)
  360. handler->init(s, -1, rtsp_st->dynamic_protocol_context);
  361. }
  362. } else if (rt->server_type == RTSP_SERVER_WMS &&
  363. codec_type == AVMEDIA_TYPE_DATA) {
  364. /* RTX stream, a stream that carries all the other actual
  365. * audio/video streams. Don't expose this to the callers. */
  366. } else {
  367. st = avformat_new_stream(s, NULL);
  368. if (!st)
  369. return;
  370. st->id = rt->nb_rtsp_streams - 1;
  371. rtsp_st->stream_index = st->index;
  372. st->codec->codec_type = codec_type;
  373. if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
  374. RTPDynamicProtocolHandler *handler;
  375. /* if standard payload type, we can find the codec right now */
  376. ff_rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
  377. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
  378. st->codec->sample_rate > 0)
  379. avpriv_set_pts_info(st, 32, 1, st->codec->sample_rate);
  380. /* Even static payload types may need a custom depacketizer */
  381. handler = ff_rtp_handler_find_by_id(
  382. rtsp_st->sdp_payload_type, st->codec->codec_type);
  383. init_rtp_handler(handler, rtsp_st, st->codec);
  384. if (handler && handler->init)
  385. handler->init(s, st->index,
  386. rtsp_st->dynamic_protocol_context);
  387. }
  388. }
  389. /* put a default control url */
  390. av_strlcpy(rtsp_st->control_url, rt->control_uri,
  391. sizeof(rtsp_st->control_url));
  392. break;
  393. case 'a':
  394. if (av_strstart(p, "control:", &p)) {
  395. if (s->nb_streams == 0) {
  396. if (!strncmp(p, "rtsp://", 7))
  397. av_strlcpy(rt->control_uri, p,
  398. sizeof(rt->control_uri));
  399. } else {
  400. char proto[32];
  401. /* get the control url */
  402. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  403. /* XXX: may need to add full url resolution */
  404. av_url_split(proto, sizeof(proto), NULL, 0, NULL, 0,
  405. NULL, NULL, 0, p);
  406. if (proto[0] == '\0') {
  407. /* relative control URL */
  408. if (rtsp_st->control_url[strlen(rtsp_st->control_url)-1]!='/')
  409. av_strlcat(rtsp_st->control_url, "/",
  410. sizeof(rtsp_st->control_url));
  411. av_strlcat(rtsp_st->control_url, p,
  412. sizeof(rtsp_st->control_url));
  413. } else
  414. av_strlcpy(rtsp_st->control_url, p,
  415. sizeof(rtsp_st->control_url));
  416. }
  417. } else if (av_strstart(p, "rtpmap:", &p) && s->nb_streams > 0) {
  418. /* NOTE: rtpmap is only supported AFTER the 'm=' tag */
  419. get_word(buf1, sizeof(buf1), &p);
  420. payload_type = atoi(buf1);
  421. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  422. if (rtsp_st->stream_index >= 0) {
  423. st = s->streams[rtsp_st->stream_index];
  424. sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
  425. }
  426. } else if (av_strstart(p, "fmtp:", &p) ||
  427. av_strstart(p, "framesize:", &p)) {
  428. /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */
  429. // let dynamic protocol handlers have a stab at the line.
  430. get_word(buf1, sizeof(buf1), &p);
  431. payload_type = atoi(buf1);
  432. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  433. rtsp_st = rt->rtsp_streams[i];
  434. if (rtsp_st->sdp_payload_type == payload_type &&
  435. rtsp_st->dynamic_handler &&
  436. rtsp_st->dynamic_handler->parse_sdp_a_line)
  437. rtsp_st->dynamic_handler->parse_sdp_a_line(s, i,
  438. rtsp_st->dynamic_protocol_context, buf);
  439. }
  440. } else if (av_strstart(p, "range:", &p)) {
  441. int64_t start, end;
  442. // this is so that seeking on a streamed file can work.
  443. rtsp_parse_range_npt(p, &start, &end);
  444. s->start_time = start;
  445. /* AV_NOPTS_VALUE means live broadcast (and can't seek) */
  446. s->duration = (end == AV_NOPTS_VALUE) ?
  447. AV_NOPTS_VALUE : end - start;
  448. } else if (av_strstart(p, "IsRealDataType:integer;",&p)) {
  449. if (atoi(p) == 1)
  450. rt->transport = RTSP_TRANSPORT_RDT;
  451. } else if (av_strstart(p, "SampleRate:integer;", &p) &&
  452. s->nb_streams > 0) {
  453. st = s->streams[s->nb_streams - 1];
  454. st->codec->sample_rate = atoi(p);
  455. } else if (av_strstart(p, "crypto:", &p) && s->nb_streams > 0) {
  456. // RFC 4568
  457. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  458. get_word(buf1, sizeof(buf1), &p); // ignore tag
  459. get_word(rtsp_st->crypto_suite, sizeof(rtsp_st->crypto_suite), &p);
  460. p += strspn(p, SPACE_CHARS);
  461. if (av_strstart(p, "inline:", &p))
  462. get_word(rtsp_st->crypto_params, sizeof(rtsp_st->crypto_params), &p);
  463. } else {
  464. if (rt->server_type == RTSP_SERVER_WMS)
  465. ff_wms_parse_sdp_a_line(s, p);
  466. if (s->nb_streams > 0) {
  467. rtsp_st = rt->rtsp_streams[rt->nb_rtsp_streams - 1];
  468. if (rt->server_type == RTSP_SERVER_REAL)
  469. ff_real_parse_sdp_a_line(s, rtsp_st->stream_index, p);
  470. if (rtsp_st->dynamic_handler &&
  471. rtsp_st->dynamic_handler->parse_sdp_a_line)
  472. rtsp_st->dynamic_handler->parse_sdp_a_line(s,
  473. rtsp_st->stream_index,
  474. rtsp_st->dynamic_protocol_context, buf);
  475. }
  476. }
  477. break;
  478. }
  479. }
  480. int ff_sdp_parse(AVFormatContext *s, const char *content)
  481. {
  482. RTSPState *rt = s->priv_data;
  483. const char *p;
  484. int letter;
  485. /* Some SDP lines, particularly for Realmedia or ASF RTSP streams,
  486. * contain long SDP lines containing complete ASF Headers (several
  487. * kB) or arrays of MDPR (RM stream descriptor) headers plus
  488. * "rulebooks" describing their properties. Therefore, the SDP line
  489. * buffer is large.
  490. *
  491. * The Vorbis FMTP line can be up to 16KB - see xiph_parse_sdp_line
  492. * in rtpdec_xiph.c. */
  493. char buf[16384], *q;
  494. SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state;
  495. p = content;
  496. for (;;) {
  497. p += strspn(p, SPACE_CHARS);
  498. letter = *p;
  499. if (letter == '\0')
  500. break;
  501. p++;
  502. if (*p != '=')
  503. goto next_line;
  504. p++;
  505. /* get the content */
  506. q = buf;
  507. while (*p != '\n' && *p != '\r' && *p != '\0') {
  508. if ((q - buf) < sizeof(buf) - 1)
  509. *q++ = *p;
  510. p++;
  511. }
  512. *q = '\0';
  513. sdp_parse_line(s, s1, letter, buf);
  514. next_line:
  515. while (*p != '\n' && *p != '\0')
  516. p++;
  517. if (*p == '\n')
  518. p++;
  519. }
  520. rt->p = av_malloc(sizeof(struct pollfd)*2*(rt->nb_rtsp_streams+1));
  521. if (!rt->p) return AVERROR(ENOMEM);
  522. return 0;
  523. }
  524. #endif /* CONFIG_RTPDEC */
  525. void ff_rtsp_undo_setup(AVFormatContext *s)
  526. {
  527. RTSPState *rt = s->priv_data;
  528. int i;
  529. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  530. RTSPStream *rtsp_st = rt->rtsp_streams[i];
  531. if (!rtsp_st)
  532. continue;
  533. if (rtsp_st->transport_priv) {
  534. if (s->oformat) {
  535. AVFormatContext *rtpctx = rtsp_st->transport_priv;
  536. av_write_trailer(rtpctx);
  537. if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
  538. uint8_t *ptr;
  539. avio_close_dyn_buf(rtpctx->pb, &ptr);
  540. av_free(ptr);
  541. } else {
  542. avio_close(rtpctx->pb);
  543. }
  544. avformat_free_context(rtpctx);
  545. } else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
  546. ff_rdt_parse_close(rtsp_st->transport_priv);
  547. else if (rt->transport == RTSP_TRANSPORT_RTP && CONFIG_RTPDEC)
  548. ff_rtp_parse_close(rtsp_st->transport_priv);
  549. }
  550. rtsp_st->transport_priv = NULL;
  551. if (rtsp_st->rtp_handle)
  552. ffurl_close(rtsp_st->rtp_handle);
  553. rtsp_st->rtp_handle = NULL;
  554. }
  555. }
  556. /* close and free RTSP streams */
  557. void ff_rtsp_close_streams(AVFormatContext *s)
  558. {
  559. RTSPState *rt = s->priv_data;
  560. int i;
  561. RTSPStream *rtsp_st;
  562. ff_rtsp_undo_setup(s);
  563. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  564. rtsp_st = rt->rtsp_streams[i];
  565. if (rtsp_st) {
  566. if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context)
  567. rtsp_st->dynamic_handler->free(
  568. rtsp_st->dynamic_protocol_context);
  569. av_free(rtsp_st);
  570. }
  571. }
  572. av_free(rt->rtsp_streams);
  573. if (rt->asf_ctx) {
  574. avformat_close_input(&rt->asf_ctx);
  575. }
  576. if (rt->ts && CONFIG_RTPDEC)
  577. ff_mpegts_parse_close(rt->ts);
  578. av_free(rt->p);
  579. av_free(rt->recvbuf);
  580. }
  581. int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
  582. {
  583. RTSPState *rt = s->priv_data;
  584. AVStream *st = NULL;
  585. int reordering_queue_size = rt->reordering_queue_size;
  586. if (reordering_queue_size < 0) {
  587. if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP || !s->max_delay)
  588. reordering_queue_size = 0;
  589. else
  590. reordering_queue_size = RTP_REORDER_QUEUE_DEFAULT_SIZE;
  591. }
  592. /* open the RTP context */
  593. if (rtsp_st->stream_index >= 0)
  594. st = s->streams[rtsp_st->stream_index];
  595. if (!st)
  596. s->ctx_flags |= AVFMTCTX_NOHEADER;
  597. if (s->oformat && CONFIG_RTSP_MUXER) {
  598. int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv, s, st,
  599. rtsp_st->rtp_handle,
  600. RTSP_TCP_MAX_PACKET_SIZE,
  601. rtsp_st->stream_index);
  602. /* Ownership of rtp_handle is passed to the rtp mux context */
  603. rtsp_st->rtp_handle = NULL;
  604. if (ret < 0)
  605. return ret;
  606. } else if (rt->transport == RTSP_TRANSPORT_RAW) {
  607. return 0; // Don't need to open any parser here
  608. } else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
  609. rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index,
  610. rtsp_st->dynamic_protocol_context,
  611. rtsp_st->dynamic_handler);
  612. else if (CONFIG_RTPDEC)
  613. rtsp_st->transport_priv = ff_rtp_parse_open(s, st,
  614. rtsp_st->sdp_payload_type,
  615. reordering_queue_size);
  616. if (!rtsp_st->transport_priv) {
  617. return AVERROR(ENOMEM);
  618. } else if (rt->transport == RTSP_TRANSPORT_RTP && CONFIG_RTPDEC) {
  619. if (rtsp_st->dynamic_handler) {
  620. ff_rtp_parse_set_dynamic_protocol(rtsp_st->transport_priv,
  621. rtsp_st->dynamic_protocol_context,
  622. rtsp_st->dynamic_handler);
  623. }
  624. if (rtsp_st->crypto_suite[0])
  625. ff_rtp_parse_set_crypto(rtsp_st->transport_priv,
  626. rtsp_st->crypto_suite,
  627. rtsp_st->crypto_params);
  628. }
  629. return 0;
  630. }
  631. #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
  632. static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
  633. {
  634. const char *q;
  635. char *p;
  636. int v;
  637. q = *pp;
  638. q += strspn(q, SPACE_CHARS);
  639. v = strtol(q, &p, 10);
  640. if (*p == '-') {
  641. p++;
  642. *min_ptr = v;
  643. v = strtol(p, &p, 10);
  644. *max_ptr = v;
  645. } else {
  646. *min_ptr = v;
  647. *max_ptr = v;
  648. }
  649. *pp = p;
  650. }
  651. /* XXX: only one transport specification is parsed */
  652. static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p)
  653. {
  654. char transport_protocol[16];
  655. char profile[16];
  656. char lower_transport[16];
  657. char parameter[16];
  658. RTSPTransportField *th;
  659. char buf[256];
  660. reply->nb_transports = 0;
  661. for (;;) {
  662. p += strspn(p, SPACE_CHARS);
  663. if (*p == '\0')
  664. break;
  665. th = &reply->transports[reply->nb_transports];
  666. get_word_sep(transport_protocol, sizeof(transport_protocol),
  667. "/", &p);
  668. if (!av_strcasecmp (transport_protocol, "rtp")) {
  669. get_word_sep(profile, sizeof(profile), "/;,", &p);
  670. lower_transport[0] = '\0';
  671. /* rtp/avp/<protocol> */
  672. if (*p == '/') {
  673. get_word_sep(lower_transport, sizeof(lower_transport),
  674. ";,", &p);
  675. }
  676. th->transport = RTSP_TRANSPORT_RTP;
  677. } else if (!av_strcasecmp (transport_protocol, "x-pn-tng") ||
  678. !av_strcasecmp (transport_protocol, "x-real-rdt")) {
  679. /* x-pn-tng/<protocol> */
  680. get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p);
  681. profile[0] = '\0';
  682. th->transport = RTSP_TRANSPORT_RDT;
  683. } else if (!av_strcasecmp(transport_protocol, "raw")) {
  684. get_word_sep(profile, sizeof(profile), "/;,", &p);
  685. lower_transport[0] = '\0';
  686. /* raw/raw/<protocol> */
  687. if (*p == '/') {
  688. get_word_sep(lower_transport, sizeof(lower_transport),
  689. ";,", &p);
  690. }
  691. th->transport = RTSP_TRANSPORT_RAW;
  692. }
  693. if (!av_strcasecmp(lower_transport, "TCP"))
  694. th->lower_transport = RTSP_LOWER_TRANSPORT_TCP;
  695. else
  696. th->lower_transport = RTSP_LOWER_TRANSPORT_UDP;
  697. if (*p == ';')
  698. p++;
  699. /* get each parameter */
  700. while (*p != '\0' && *p != ',') {
  701. get_word_sep(parameter, sizeof(parameter), "=;,", &p);
  702. if (!strcmp(parameter, "port")) {
  703. if (*p == '=') {
  704. p++;
  705. rtsp_parse_range(&th->port_min, &th->port_max, &p);
  706. }
  707. } else if (!strcmp(parameter, "client_port")) {
  708. if (*p == '=') {
  709. p++;
  710. rtsp_parse_range(&th->client_port_min,
  711. &th->client_port_max, &p);
  712. }
  713. } else if (!strcmp(parameter, "server_port")) {
  714. if (*p == '=') {
  715. p++;
  716. rtsp_parse_range(&th->server_port_min,
  717. &th->server_port_max, &p);
  718. }
  719. } else if (!strcmp(parameter, "interleaved")) {
  720. if (*p == '=') {
  721. p++;
  722. rtsp_parse_range(&th->interleaved_min,
  723. &th->interleaved_max, &p);
  724. }
  725. } else if (!strcmp(parameter, "multicast")) {
  726. if (th->lower_transport == RTSP_LOWER_TRANSPORT_UDP)
  727. th->lower_transport = RTSP_LOWER_TRANSPORT_UDP_MULTICAST;
  728. } else if (!strcmp(parameter, "ttl")) {
  729. if (*p == '=') {
  730. char *end;
  731. p++;
  732. th->ttl = strtol(p, &end, 10);
  733. p = end;
  734. }
  735. } else if (!strcmp(parameter, "destination")) {
  736. if (*p == '=') {
  737. p++;
  738. get_word_sep(buf, sizeof(buf), ";,", &p);
  739. get_sockaddr(buf, &th->destination);
  740. }
  741. } else if (!strcmp(parameter, "source")) {
  742. if (*p == '=') {
  743. p++;
  744. get_word_sep(buf, sizeof(buf), ";,", &p);
  745. av_strlcpy(th->source, buf, sizeof(th->source));
  746. }
  747. } else if (!strcmp(parameter, "mode")) {
  748. if (*p == '=') {
  749. p++;
  750. get_word_sep(buf, sizeof(buf), ";, ", &p);
  751. if (!strcmp(buf, "record") ||
  752. !strcmp(buf, "receive"))
  753. th->mode_record = 1;
  754. }
  755. }
  756. while (*p != ';' && *p != '\0' && *p != ',')
  757. p++;
  758. if (*p == ';')
  759. p++;
  760. }
  761. if (*p == ',')
  762. p++;
  763. reply->nb_transports++;
  764. }
  765. }
  766. static void handle_rtp_info(RTSPState *rt, const char *url,
  767. uint32_t seq, uint32_t rtptime)
  768. {
  769. int i;
  770. if (!rtptime || !url[0])
  771. return;
  772. if (rt->transport != RTSP_TRANSPORT_RTP)
  773. return;
  774. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  775. RTSPStream *rtsp_st = rt->rtsp_streams[i];
  776. RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
  777. if (!rtpctx)
  778. continue;
  779. if (!strcmp(rtsp_st->control_url, url)) {
  780. rtpctx->base_timestamp = rtptime;
  781. break;
  782. }
  783. }
  784. }
  785. static void rtsp_parse_rtp_info(RTSPState *rt, const char *p)
  786. {
  787. int read = 0;
  788. char key[20], value[1024], url[1024] = "";
  789. uint32_t seq = 0, rtptime = 0;
  790. for (;;) {
  791. p += strspn(p, SPACE_CHARS);
  792. if (!*p)
  793. break;
  794. get_word_sep(key, sizeof(key), "=", &p);
  795. if (*p != '=')
  796. break;
  797. p++;
  798. get_word_sep(value, sizeof(value), ";, ", &p);
  799. read++;
  800. if (!strcmp(key, "url"))
  801. av_strlcpy(url, value, sizeof(url));
  802. else if (!strcmp(key, "seq"))
  803. seq = strtoul(value, NULL, 10);
  804. else if (!strcmp(key, "rtptime"))
  805. rtptime = strtoul(value, NULL, 10);
  806. if (*p == ',') {
  807. handle_rtp_info(rt, url, seq, rtptime);
  808. url[0] = '\0';
  809. seq = rtptime = 0;
  810. read = 0;
  811. }
  812. if (*p)
  813. p++;
  814. }
  815. if (read > 0)
  816. handle_rtp_info(rt, url, seq, rtptime);
  817. }
  818. void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf,
  819. RTSPState *rt, const char *method)
  820. {
  821. const char *p;
  822. /* NOTE: we do case independent match for broken servers */
  823. p = buf;
  824. if (av_stristart(p, "Session:", &p)) {
  825. int t;
  826. get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p);
  827. if (av_stristart(p, ";timeout=", &p) &&
  828. (t = strtol(p, NULL, 10)) > 0) {
  829. reply->timeout = t;
  830. }
  831. } else if (av_stristart(p, "Content-Length:", &p)) {
  832. reply->content_length = strtol(p, NULL, 10);
  833. } else if (av_stristart(p, "Transport:", &p)) {
  834. rtsp_parse_transport(reply, p);
  835. } else if (av_stristart(p, "CSeq:", &p)) {
  836. reply->seq = strtol(p, NULL, 10);
  837. } else if (av_stristart(p, "Range:", &p)) {
  838. rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end);
  839. } else if (av_stristart(p, "RealChallenge1:", &p)) {
  840. p += strspn(p, SPACE_CHARS);
  841. av_strlcpy(reply->real_challenge, p, sizeof(reply->real_challenge));
  842. } else if (av_stristart(p, "Server:", &p)) {
  843. p += strspn(p, SPACE_CHARS);
  844. av_strlcpy(reply->server, p, sizeof(reply->server));
  845. } else if (av_stristart(p, "Notice:", &p) ||
  846. av_stristart(p, "X-Notice:", &p)) {
  847. reply->notice = strtol(p, NULL, 10);
  848. } else if (av_stristart(p, "Location:", &p)) {
  849. p += strspn(p, SPACE_CHARS);
  850. av_strlcpy(reply->location, p , sizeof(reply->location));
  851. } else if (av_stristart(p, "WWW-Authenticate:", &p) && rt) {
  852. p += strspn(p, SPACE_CHARS);
  853. ff_http_auth_handle_header(&rt->auth_state, "WWW-Authenticate", p);
  854. } else if (av_stristart(p, "Authentication-Info:", &p) && rt) {
  855. p += strspn(p, SPACE_CHARS);
  856. ff_http_auth_handle_header(&rt->auth_state, "Authentication-Info", p);
  857. } else if (av_stristart(p, "Content-Base:", &p) && rt) {
  858. p += strspn(p, SPACE_CHARS);
  859. if (method && !strcmp(method, "DESCRIBE"))
  860. av_strlcpy(rt->control_uri, p , sizeof(rt->control_uri));
  861. } else if (av_stristart(p, "RTP-Info:", &p) && rt) {
  862. p += strspn(p, SPACE_CHARS);
  863. if (method && !strcmp(method, "PLAY"))
  864. rtsp_parse_rtp_info(rt, p);
  865. } else if (av_stristart(p, "Public:", &p) && rt) {
  866. if (strstr(p, "GET_PARAMETER") &&
  867. method && !strcmp(method, "OPTIONS"))
  868. rt->get_parameter_supported = 1;
  869. } else if (av_stristart(p, "x-Accept-Dynamic-Rate:", &p) && rt) {
  870. p += strspn(p, SPACE_CHARS);
  871. rt->accept_dynamic_rate = atoi(p);
  872. } else if (av_stristart(p, "Content-Type:", &p)) {
  873. p += strspn(p, SPACE_CHARS);
  874. av_strlcpy(reply->content_type, p, sizeof(reply->content_type));
  875. }
  876. }
  877. /* skip a RTP/TCP interleaved packet */
  878. void ff_rtsp_skip_packet(AVFormatContext *s)
  879. {
  880. RTSPState *rt = s->priv_data;
  881. int ret, len, len1;
  882. uint8_t buf[1024];
  883. ret = ffurl_read_complete(rt->rtsp_hd, buf, 3);
  884. if (ret != 3)
  885. return;
  886. len = AV_RB16(buf + 1);
  887. av_dlog(s, "skipping RTP packet len=%d\n", len);
  888. /* skip payload */
  889. while (len > 0) {
  890. len1 = len;
  891. if (len1 > sizeof(buf))
  892. len1 = sizeof(buf);
  893. ret = ffurl_read_complete(rt->rtsp_hd, buf, len1);
  894. if (ret != len1)
  895. return;
  896. len -= len1;
  897. }
  898. }
  899. int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
  900. unsigned char **content_ptr,
  901. int return_on_interleaved_data, const char *method)
  902. {
  903. RTSPState *rt = s->priv_data;
  904. char buf[4096], buf1[1024], *q;
  905. unsigned char ch;
  906. const char *p;
  907. int ret, content_length, line_count = 0, request = 0;
  908. unsigned char *content = NULL;
  909. start:
  910. line_count = 0;
  911. request = 0;
  912. content = NULL;
  913. memset(reply, 0, sizeof(*reply));
  914. /* parse reply (XXX: use buffers) */
  915. rt->last_reply[0] = '\0';
  916. for (;;) {
  917. q = buf;
  918. for (;;) {
  919. ret = ffurl_read_complete(rt->rtsp_hd, &ch, 1);
  920. av_dlog(s, "ret=%d c=%02x [%c]\n", ret, ch, ch);
  921. if (ret != 1)
  922. return AVERROR_EOF;
  923. if (ch == '\n')
  924. break;
  925. if (ch == '$') {
  926. /* XXX: only parse it if first char on line ? */
  927. if (return_on_interleaved_data) {
  928. return 1;
  929. } else
  930. ff_rtsp_skip_packet(s);
  931. } else if (ch != '\r') {
  932. if ((q - buf) < sizeof(buf) - 1)
  933. *q++ = ch;
  934. }
  935. }
  936. *q = '\0';
  937. av_dlog(s, "line='%s'\n", buf);
  938. /* test if last line */
  939. if (buf[0] == '\0')
  940. break;
  941. p = buf;
  942. if (line_count == 0) {
  943. /* get reply code */
  944. get_word(buf1, sizeof(buf1), &p);
  945. if (!strncmp(buf1, "RTSP/", 5)) {
  946. get_word(buf1, sizeof(buf1), &p);
  947. reply->status_code = atoi(buf1);
  948. av_strlcpy(reply->reason, p, sizeof(reply->reason));
  949. } else {
  950. av_strlcpy(reply->reason, buf1, sizeof(reply->reason)); // method
  951. get_word(buf1, sizeof(buf1), &p); // object
  952. request = 1;
  953. }
  954. } else {
  955. ff_rtsp_parse_line(reply, p, rt, method);
  956. av_strlcat(rt->last_reply, p, sizeof(rt->last_reply));
  957. av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply));
  958. }
  959. line_count++;
  960. }
  961. if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0' && !request)
  962. av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id));
  963. content_length = reply->content_length;
  964. if (content_length > 0) {
  965. /* leave some room for a trailing '\0' (useful for simple parsing) */
  966. content = av_malloc(content_length + 1);
  967. ffurl_read_complete(rt->rtsp_hd, content, content_length);
  968. content[content_length] = '\0';
  969. }
  970. if (content_ptr)
  971. *content_ptr = content;
  972. else
  973. av_free(content);
  974. if (request) {
  975. char buf[1024];
  976. char base64buf[AV_BASE64_SIZE(sizeof(buf))];
  977. const char* ptr = buf;
  978. if (!strcmp(reply->reason, "OPTIONS")) {
  979. snprintf(buf, sizeof(buf), "RTSP/1.0 200 OK\r\n");
  980. if (reply->seq)
  981. av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", reply->seq);
  982. if (reply->session_id[0])
  983. av_strlcatf(buf, sizeof(buf), "Session: %s\r\n",
  984. reply->session_id);
  985. } else {
  986. snprintf(buf, sizeof(buf), "RTSP/1.0 501 Not Implemented\r\n");
  987. }
  988. av_strlcat(buf, "\r\n", sizeof(buf));
  989. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  990. av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
  991. ptr = base64buf;
  992. }
  993. ffurl_write(rt->rtsp_hd_out, ptr, strlen(ptr));
  994. rt->last_cmd_time = av_gettime();
  995. /* Even if the request from the server had data, it is not the data
  996. * that the caller wants or expects. The memory could also be leaked
  997. * if the actual following reply has content data. */
  998. if (content_ptr)
  999. av_freep(content_ptr);
  1000. /* If method is set, this is called from ff_rtsp_send_cmd,
  1001. * where a reply to exactly this request is awaited. For
  1002. * callers from within packet receiving, we just want to
  1003. * return to the caller and go back to receiving packets. */
  1004. if (method)
  1005. goto start;
  1006. return 0;
  1007. }
  1008. if (rt->seq != reply->seq) {
  1009. av_log(s, AV_LOG_WARNING, "CSeq %d expected, %d received.\n",
  1010. rt->seq, reply->seq);
  1011. }
  1012. /* EOS */
  1013. if (reply->notice == 2101 /* End-of-Stream Reached */ ||
  1014. reply->notice == 2104 /* Start-of-Stream Reached */ ||
  1015. reply->notice == 2306 /* Continuous Feed Terminated */) {
  1016. rt->state = RTSP_STATE_IDLE;
  1017. } else if (reply->notice >= 4400 && reply->notice < 5500) {
  1018. return AVERROR(EIO); /* data or server error */
  1019. } else if (reply->notice == 2401 /* Ticket Expired */ ||
  1020. (reply->notice >= 5500 && reply->notice < 5600) /* end of term */ )
  1021. return AVERROR(EPERM);
  1022. return 0;
  1023. }
  1024. /**
  1025. * Send a command to the RTSP server without waiting for the reply.
  1026. *
  1027. * @param s RTSP (de)muxer context
  1028. * @param method the method for the request
  1029. * @param url the target url for the request
  1030. * @param headers extra header lines to include in the request
  1031. * @param send_content if non-null, the data to send as request body content
  1032. * @param send_content_length the length of the send_content data, or 0 if
  1033. * send_content is null
  1034. *
  1035. * @return zero if success, nonzero otherwise
  1036. */
  1037. static int rtsp_send_cmd_with_content_async(AVFormatContext *s,
  1038. const char *method, const char *url,
  1039. const char *headers,
  1040. const unsigned char *send_content,
  1041. int send_content_length)
  1042. {
  1043. RTSPState *rt = s->priv_data;
  1044. char buf[4096], *out_buf;
  1045. char base64buf[AV_BASE64_SIZE(sizeof(buf))];
  1046. /* Add in RTSP headers */
  1047. out_buf = buf;
  1048. rt->seq++;
  1049. snprintf(buf, sizeof(buf), "%s %s RTSP/1.0\r\n", method, url);
  1050. if (headers)
  1051. av_strlcat(buf, headers, sizeof(buf));
  1052. av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", rt->seq);
  1053. if (rt->session_id[0] != '\0' && (!headers ||
  1054. !strstr(headers, "\nIf-Match:"))) {
  1055. av_strlcatf(buf, sizeof(buf), "Session: %s\r\n", rt->session_id);
  1056. }
  1057. if (rt->auth[0]) {
  1058. char *str = ff_http_auth_create_response(&rt->auth_state,
  1059. rt->auth, url, method);
  1060. if (str)
  1061. av_strlcat(buf, str, sizeof(buf));
  1062. av_free(str);
  1063. }
  1064. if (send_content_length > 0 && send_content)
  1065. av_strlcatf(buf, sizeof(buf), "Content-Length: %d\r\n", send_content_length);
  1066. av_strlcat(buf, "\r\n", sizeof(buf));
  1067. /* base64 encode rtsp if tunneling */
  1068. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  1069. av_base64_encode(base64buf, sizeof(base64buf), buf, strlen(buf));
  1070. out_buf = base64buf;
  1071. }
  1072. av_dlog(s, "Sending:\n%s--\n", buf);
  1073. ffurl_write(rt->rtsp_hd_out, out_buf, strlen(out_buf));
  1074. if (send_content_length > 0 && send_content) {
  1075. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  1076. av_log(s, AV_LOG_ERROR, "tunneling of RTSP requests "
  1077. "with content data not supported\n");
  1078. return AVERROR_PATCHWELCOME;
  1079. }
  1080. ffurl_write(rt->rtsp_hd_out, send_content, send_content_length);
  1081. }
  1082. rt->last_cmd_time = av_gettime();
  1083. return 0;
  1084. }
  1085. int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method,
  1086. const char *url, const char *headers)
  1087. {
  1088. return rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
  1089. }
  1090. int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url,
  1091. const char *headers, RTSPMessageHeader *reply,
  1092. unsigned char **content_ptr)
  1093. {
  1094. return ff_rtsp_send_cmd_with_content(s, method, url, headers, reply,
  1095. content_ptr, NULL, 0);
  1096. }
  1097. int ff_rtsp_send_cmd_with_content(AVFormatContext *s,
  1098. const char *method, const char *url,
  1099. const char *header,
  1100. RTSPMessageHeader *reply,
  1101. unsigned char **content_ptr,
  1102. const unsigned char *send_content,
  1103. int send_content_length)
  1104. {
  1105. RTSPState *rt = s->priv_data;
  1106. HTTPAuthType cur_auth_type;
  1107. int ret, attempts = 0;
  1108. retry:
  1109. cur_auth_type = rt->auth_state.auth_type;
  1110. if ((ret = rtsp_send_cmd_with_content_async(s, method, url, header,
  1111. send_content,
  1112. send_content_length)))
  1113. return ret;
  1114. if ((ret = ff_rtsp_read_reply(s, reply, content_ptr, 0, method) ) < 0)
  1115. return ret;
  1116. attempts++;
  1117. if (reply->status_code == 401 &&
  1118. (cur_auth_type == HTTP_AUTH_NONE || rt->auth_state.stale) &&
  1119. rt->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2)
  1120. goto retry;
  1121. if (reply->status_code > 400){
  1122. av_log(s, AV_LOG_ERROR, "method %s failed: %d%s\n",
  1123. method,
  1124. reply->status_code,
  1125. reply->reason);
  1126. av_log(s, AV_LOG_DEBUG, "%s\n", rt->last_reply);
  1127. }
  1128. return 0;
  1129. }
  1130. int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port,
  1131. int lower_transport, const char *real_challenge)
  1132. {
  1133. RTSPState *rt = s->priv_data;
  1134. int rtx = 0, j, i, err, interleave = 0, port_off;
  1135. RTSPStream *rtsp_st;
  1136. RTSPMessageHeader reply1, *reply = &reply1;
  1137. char cmd[2048];
  1138. const char *trans_pref;
  1139. if (rt->transport == RTSP_TRANSPORT_RDT)
  1140. trans_pref = "x-pn-tng";
  1141. else if (rt->transport == RTSP_TRANSPORT_RAW)
  1142. trans_pref = "RAW/RAW";
  1143. else
  1144. trans_pref = "RTP/AVP";
  1145. /* default timeout: 1 minute */
  1146. rt->timeout = 60;
  1147. /* Choose a random starting offset within the first half of the
  1148. * port range, to allow for a number of ports to try even if the offset
  1149. * happens to be at the end of the random range. */
  1150. port_off = av_get_random_seed() % ((rt->rtp_port_max - rt->rtp_port_min)/2);
  1151. /* even random offset */
  1152. port_off -= port_off & 0x01;
  1153. for (j = rt->rtp_port_min + port_off, i = 0; i < rt->nb_rtsp_streams; ++i) {
  1154. char transport[2048];
  1155. /*
  1156. * WMS serves all UDP data over a single connection, the RTX, which
  1157. * isn't necessarily the first in the SDP but has to be the first
  1158. * to be set up, else the second/third SETUP will fail with a 461.
  1159. */
  1160. if (lower_transport == RTSP_LOWER_TRANSPORT_UDP &&
  1161. rt->server_type == RTSP_SERVER_WMS) {
  1162. if (i == 0) {
  1163. /* rtx first */
  1164. for (rtx = 0; rtx < rt->nb_rtsp_streams; rtx++) {
  1165. int len = strlen(rt->rtsp_streams[rtx]->control_url);
  1166. if (len >= 4 &&
  1167. !strcmp(rt->rtsp_streams[rtx]->control_url + len - 4,
  1168. "/rtx"))
  1169. break;
  1170. }
  1171. if (rtx == rt->nb_rtsp_streams)
  1172. return -1; /* no RTX found */
  1173. rtsp_st = rt->rtsp_streams[rtx];
  1174. } else
  1175. rtsp_st = rt->rtsp_streams[i > rtx ? i : i - 1];
  1176. } else
  1177. rtsp_st = rt->rtsp_streams[i];
  1178. /* RTP/UDP */
  1179. if (lower_transport == RTSP_LOWER_TRANSPORT_UDP) {
  1180. char buf[256];
  1181. if (rt->server_type == RTSP_SERVER_WMS && i > 1) {
  1182. port = reply->transports[0].client_port_min;
  1183. goto have_port;
  1184. }
  1185. /* first try in specified port range */
  1186. while (j <= rt->rtp_port_max) {
  1187. ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
  1188. "?localport=%d", j);
  1189. /* we will use two ports per rtp stream (rtp and rtcp) */
  1190. j += 2;
  1191. if (!ffurl_open(&rtsp_st->rtp_handle, buf, AVIO_FLAG_READ_WRITE,
  1192. &s->interrupt_callback, NULL))
  1193. goto rtp_opened;
  1194. }
  1195. av_log(s, AV_LOG_ERROR, "Unable to open an input RTP port\n");
  1196. err = AVERROR(EIO);
  1197. goto fail;
  1198. rtp_opened:
  1199. port = ff_rtp_get_local_rtp_port(rtsp_st->rtp_handle);
  1200. have_port:
  1201. snprintf(transport, sizeof(transport) - 1,
  1202. "%s/UDP;", trans_pref);
  1203. if (rt->server_type != RTSP_SERVER_REAL)
  1204. av_strlcat(transport, "unicast;", sizeof(transport));
  1205. av_strlcatf(transport, sizeof(transport),
  1206. "client_port=%d", port);
  1207. if (rt->transport == RTSP_TRANSPORT_RTP &&
  1208. !(rt->server_type == RTSP_SERVER_WMS && i > 0))
  1209. av_strlcatf(transport, sizeof(transport), "-%d", port + 1);
  1210. }
  1211. /* RTP/TCP */
  1212. else if (lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
  1213. /* For WMS streams, the application streams are only used for
  1214. * UDP. When trying to set it up for TCP streams, the server
  1215. * will return an error. Therefore, we skip those streams. */
  1216. if (rt->server_type == RTSP_SERVER_WMS &&
  1217. (rtsp_st->stream_index < 0 ||
  1218. s->streams[rtsp_st->stream_index]->codec->codec_type ==
  1219. AVMEDIA_TYPE_DATA))
  1220. continue;
  1221. snprintf(transport, sizeof(transport) - 1,
  1222. "%s/TCP;", trans_pref);
  1223. if (rt->transport != RTSP_TRANSPORT_RDT)
  1224. av_strlcat(transport, "unicast;", sizeof(transport));
  1225. av_strlcatf(transport, sizeof(transport),
  1226. "interleaved=%d-%d",
  1227. interleave, interleave + 1);
  1228. interleave += 2;
  1229. }
  1230. else if (lower_transport == RTSP_LOWER_TRANSPORT_UDP_MULTICAST) {
  1231. snprintf(transport, sizeof(transport) - 1,
  1232. "%s/UDP;multicast", trans_pref);
  1233. }
  1234. if (s->oformat) {
  1235. av_strlcat(transport, ";mode=record", sizeof(transport));
  1236. } else if (rt->server_type == RTSP_SERVER_REAL ||
  1237. rt->server_type == RTSP_SERVER_WMS)
  1238. av_strlcat(transport, ";mode=play", sizeof(transport));
  1239. snprintf(cmd, sizeof(cmd),
  1240. "Transport: %s\r\n",
  1241. transport);
  1242. if (rt->accept_dynamic_rate)
  1243. av_strlcat(cmd, "x-Dynamic-Rate: 0\r\n", sizeof(cmd));
  1244. if (i == 0 && rt->server_type == RTSP_SERVER_REAL && CONFIG_RTPDEC) {
  1245. char real_res[41], real_csum[9];
  1246. ff_rdt_calc_response_and_checksum(real_res, real_csum,
  1247. real_challenge);
  1248. av_strlcatf(cmd, sizeof(cmd),
  1249. "If-Match: %s\r\n"
  1250. "RealChallenge2: %s, sd=%s\r\n",
  1251. rt->session_id, real_res, real_csum);
  1252. }
  1253. ff_rtsp_send_cmd(s, "SETUP", rtsp_st->control_url, cmd, reply, NULL);
  1254. if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) {
  1255. err = 1;
  1256. goto fail;
  1257. } else if (reply->status_code != RTSP_STATUS_OK ||
  1258. reply->nb_transports != 1) {
  1259. err = AVERROR_INVALIDDATA;
  1260. goto fail;
  1261. }
  1262. /* XXX: same protocol for all streams is required */
  1263. if (i > 0) {
  1264. if (reply->transports[0].lower_transport != rt->lower_transport ||
  1265. reply->transports[0].transport != rt->transport) {
  1266. err = AVERROR_INVALIDDATA;
  1267. goto fail;
  1268. }
  1269. } else {
  1270. rt->lower_transport = reply->transports[0].lower_transport;
  1271. rt->transport = reply->transports[0].transport;
  1272. }
  1273. /* Fail if the server responded with another lower transport mode
  1274. * than what we requested. */
  1275. if (reply->transports[0].lower_transport != lower_transport) {
  1276. av_log(s, AV_LOG_ERROR, "Nonmatching transport in server reply\n");
  1277. err = AVERROR_INVALIDDATA;
  1278. goto fail;
  1279. }
  1280. switch(reply->transports[0].lower_transport) {
  1281. case RTSP_LOWER_TRANSPORT_TCP:
  1282. rtsp_st->interleaved_min = reply->transports[0].interleaved_min;
  1283. rtsp_st->interleaved_max = reply->transports[0].interleaved_max;
  1284. break;
  1285. case RTSP_LOWER_TRANSPORT_UDP: {
  1286. char url[1024], options[30] = "";
  1287. if (rt->rtsp_flags & RTSP_FLAG_FILTER_SRC)
  1288. av_strlcpy(options, "?connect=1", sizeof(options));
  1289. /* Use source address if specified */
  1290. if (reply->transports[0].source[0]) {
  1291. ff_url_join(url, sizeof(url), "rtp", NULL,
  1292. reply->transports[0].source,
  1293. reply->transports[0].server_port_min, "%s", options);
  1294. } else {
  1295. ff_url_join(url, sizeof(url), "rtp", NULL, host,
  1296. reply->transports[0].server_port_min, "%s", options);
  1297. }
  1298. if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) &&
  1299. ff_rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) {
  1300. err = AVERROR_INVALIDDATA;
  1301. goto fail;
  1302. }
  1303. /* Try to initialize the connection state in a
  1304. * potential NAT router by sending dummy packets.
  1305. * RTP/RTCP dummy packets are used for RDT, too.
  1306. */
  1307. if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) && s->iformat &&
  1308. CONFIG_RTPDEC)
  1309. ff_rtp_send_punch_packets(rtsp_st->rtp_handle);
  1310. break;
  1311. }
  1312. case RTSP_LOWER_TRANSPORT_UDP_MULTICAST: {
  1313. char url[1024], namebuf[50], optbuf[20] = "";
  1314. struct sockaddr_storage addr;
  1315. int port, ttl;
  1316. if (reply->transports[0].destination.ss_family) {
  1317. addr = reply->transports[0].destination;
  1318. port = reply->transports[0].port_min;
  1319. ttl = reply->transports[0].ttl;
  1320. } else {
  1321. addr = rtsp_st->sdp_ip;
  1322. port = rtsp_st->sdp_port;
  1323. ttl = rtsp_st->sdp_ttl;
  1324. }
  1325. if (ttl > 0)
  1326. snprintf(optbuf, sizeof(optbuf), "?ttl=%d", ttl);
  1327. getnameinfo((struct sockaddr*) &addr, sizeof(addr),
  1328. namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
  1329. ff_url_join(url, sizeof(url), "rtp", NULL, namebuf,
  1330. port, "%s", optbuf);
  1331. if (ffurl_open(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ_WRITE,
  1332. &s->interrupt_callback, NULL) < 0) {
  1333. err = AVERROR_INVALIDDATA;
  1334. goto fail;
  1335. }
  1336. break;
  1337. }
  1338. }
  1339. if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
  1340. goto fail;
  1341. }
  1342. if (rt->nb_rtsp_streams && reply->timeout > 0)
  1343. rt->timeout = reply->timeout;
  1344. if (rt->server_type == RTSP_SERVER_REAL)
  1345. rt->need_subscription = 1;
  1346. return 0;
  1347. fail:
  1348. ff_rtsp_undo_setup(s);
  1349. return err;
  1350. }
  1351. void ff_rtsp_close_connections(AVFormatContext *s)
  1352. {
  1353. RTSPState *rt = s->priv_data;
  1354. if (rt->rtsp_hd_out != rt->rtsp_hd) ffurl_close(rt->rtsp_hd_out);
  1355. ffurl_close(rt->rtsp_hd);
  1356. rt->rtsp_hd = rt->rtsp_hd_out = NULL;
  1357. }
  1358. int ff_rtsp_connect(AVFormatContext *s)
  1359. {
  1360. RTSPState *rt = s->priv_data;
  1361. char host[1024], path[1024], tcpname[1024], cmd[2048], auth[128];
  1362. int port, err, tcp_fd;
  1363. RTSPMessageHeader reply1 = {0}, *reply = &reply1;
  1364. int lower_transport_mask = 0;
  1365. char real_challenge[64] = "";
  1366. struct sockaddr_storage peer;
  1367. socklen_t peer_len = sizeof(peer);
  1368. if (rt->rtp_port_max < rt->rtp_port_min) {
  1369. av_log(s, AV_LOG_ERROR, "Invalid UDP port range, max port %d less "
  1370. "than min port %d\n", rt->rtp_port_max,
  1371. rt->rtp_port_min);
  1372. return AVERROR(EINVAL);
  1373. }
  1374. if (!ff_network_init())
  1375. return AVERROR(EIO);
  1376. if (s->max_delay < 0) /* Not set by the caller */
  1377. s->max_delay = s->iformat ? DEFAULT_REORDERING_DELAY : 0;
  1378. rt->control_transport = RTSP_MODE_PLAIN;
  1379. if (rt->lower_transport_mask & (1 << RTSP_LOWER_TRANSPORT_HTTP)) {
  1380. rt->lower_transport_mask = 1 << RTSP_LOWER_TRANSPORT_TCP;
  1381. rt->control_transport = RTSP_MODE_TUNNEL;
  1382. }
  1383. /* Only pass through valid flags from here */
  1384. rt->lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
  1385. redirect:
  1386. lower_transport_mask = rt->lower_transport_mask;
  1387. /* extract hostname and port */
  1388. av_url_split(NULL, 0, auth, sizeof(auth),
  1389. host, sizeof(host), &port, path, sizeof(path), s->filename);
  1390. if (*auth) {
  1391. av_strlcpy(rt->auth, auth, sizeof(rt->auth));
  1392. }
  1393. if (port < 0)
  1394. port = RTSP_DEFAULT_PORT;
  1395. if (!lower_transport_mask)
  1396. lower_transport_mask = (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
  1397. if (s->oformat) {
  1398. /* Only UDP or TCP - UDP multicast isn't supported. */
  1399. lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_UDP) |
  1400. (1 << RTSP_LOWER_TRANSPORT_TCP);
  1401. if (!lower_transport_mask || rt->control_transport == RTSP_MODE_TUNNEL) {
  1402. av_log(s, AV_LOG_ERROR, "Unsupported lower transport method, "
  1403. "only UDP and TCP are supported for output.\n");
  1404. err = AVERROR(EINVAL);
  1405. goto fail;
  1406. }
  1407. }
  1408. /* Construct the URI used in request; this is similar to s->filename,
  1409. * but with authentication credentials removed and RTSP specific options
  1410. * stripped out. */
  1411. ff_url_join(rt->control_uri, sizeof(rt->control_uri), "rtsp", NULL,
  1412. host, port, "%s", path);
  1413. if (rt->control_transport == RTSP_MODE_TUNNEL) {
  1414. /* set up initial handshake for tunneling */
  1415. char httpname[1024];
  1416. char sessioncookie[17];
  1417. char headers[1024];
  1418. ff_url_join(httpname, sizeof(httpname), "http", auth, host, port, "%s", path);
  1419. snprintf(sessioncookie, sizeof(sessioncookie), "%08x%08x",
  1420. av_get_random_seed(), av_get_random_seed());
  1421. /* GET requests */
  1422. if (ffurl_alloc(&rt->rtsp_hd, httpname, AVIO_FLAG_READ,
  1423. &s->interrupt_callback) < 0) {
  1424. err = AVERROR(EIO);
  1425. goto fail;
  1426. }
  1427. /* generate GET headers */
  1428. snprintf(headers, sizeof(headers),
  1429. "x-sessioncookie: %s\r\n"
  1430. "Accept: application/x-rtsp-tunnelled\r\n"
  1431. "Pragma: no-cache\r\n"
  1432. "Cache-Control: no-cache\r\n",
  1433. sessioncookie);
  1434. av_opt_set(rt->rtsp_hd->priv_data, "headers", headers, 0);
  1435. /* complete the connection */
  1436. if (ffurl_connect(rt->rtsp_hd, NULL)) {
  1437. err = AVERROR(EIO);
  1438. goto fail;
  1439. }
  1440. /* POST requests */
  1441. if (ffurl_alloc(&rt->rtsp_hd_out, httpname, AVIO_FLAG_WRITE,
  1442. &s->interrupt_callback) < 0 ) {
  1443. err = AVERROR(EIO);
  1444. goto fail;
  1445. }
  1446. /* generate POST headers */
  1447. snprintf(headers, sizeof(headers),
  1448. "x-sessioncookie: %s\r\n"
  1449. "Content-Type: application/x-rtsp-tunnelled\r\n"
  1450. "Pragma: no-cache\r\n"
  1451. "Cache-Control: no-cache\r\n"
  1452. "Content-Length: 32767\r\n"
  1453. "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n",
  1454. sessioncookie);
  1455. av_opt_set(rt->rtsp_hd_out->priv_data, "headers", headers, 0);
  1456. av_opt_set(rt->rtsp_hd_out->priv_data, "chunked_post", "0", 0);
  1457. /* Initialize the authentication state for the POST session. The HTTP
  1458. * protocol implementation doesn't properly handle multi-pass
  1459. * authentication for POST requests, since it would require one of
  1460. * the following:
  1461. * - implementing Expect: 100-continue, which many HTTP servers
  1462. * don't support anyway, even less the RTSP servers that do HTTP
  1463. * tunneling
  1464. * - sending the whole POST data until getting a 401 reply specifying
  1465. * what authentication method to use, then resending all that data
  1466. * - waiting for potential 401 replies directly after sending the
  1467. * POST header (waiting for some unspecified time)
  1468. * Therefore, we copy the full auth state, which works for both basic
  1469. * and digest. (For digest, we would have to synchronize the nonce
  1470. * count variable between the two sessions, if we'd do more requests
  1471. * with the original session, though.)
  1472. */
  1473. ff_http_init_auth_state(rt->rtsp_hd_out, rt->rtsp_hd);
  1474. /* complete the connection */
  1475. if (ffurl_connect(rt->rtsp_hd_out, NULL)) {
  1476. err = AVERROR(EIO);
  1477. goto fail;
  1478. }
  1479. } else {
  1480. /* open the tcp connection */
  1481. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port,
  1482. "?timeout=%d", rt->stimeout);
  1483. if (ffurl_open(&rt->rtsp_hd, tcpname, AVIO_FLAG_READ_WRITE,
  1484. &s->interrupt_callback, NULL) < 0) {
  1485. err = AVERROR(EIO);
  1486. goto fail;
  1487. }
  1488. rt->rtsp_hd_out = rt->rtsp_hd;
  1489. }
  1490. rt->seq = 0;
  1491. tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
  1492. if (!getpeername(tcp_fd, (struct sockaddr*) &peer, &peer_len)) {
  1493. getnameinfo((struct sockaddr*) &peer, peer_len, host, sizeof(host),
  1494. NULL, 0, NI_NUMERICHOST);
  1495. }
  1496. /* request options supported by the server; this also detects server
  1497. * type */
  1498. for (rt->server_type = RTSP_SERVER_RTP;;) {
  1499. cmd[0] = 0;
  1500. if (rt->server_type == RTSP_SERVER_REAL)
  1501. av_strlcat(cmd,
  1502. /*
  1503. * The following entries are required for proper
  1504. * streaming from a Realmedia server. They are
  1505. * interdependent in some way although we currently
  1506. * don't quite understand how. Values were copied
  1507. * from mplayer SVN r23589.
  1508. * ClientChallenge is a 16-byte ID in hex
  1509. * CompanyID is a 16-byte ID in base64
  1510. */
  1511. "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
  1512. "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
  1513. "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
  1514. "GUID: 00000000-0000-0000-0000-000000000000\r\n",
  1515. sizeof(cmd));
  1516. ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL);
  1517. if (reply->status_code != RTSP_STATUS_OK) {
  1518. err = AVERROR_INVALIDDATA;
  1519. goto fail;
  1520. }
  1521. /* detect server type if not standard-compliant RTP */
  1522. if (rt->server_type != RTSP_SERVER_REAL && reply->real_challenge[0]) {
  1523. rt->server_type = RTSP_SERVER_REAL;
  1524. continue;
  1525. } else if (!av_strncasecmp(reply->server, "WMServer/", 9)) {
  1526. rt->server_type = RTSP_SERVER_WMS;
  1527. } else if (rt->server_type == RTSP_SERVER_REAL)
  1528. strcpy(real_challenge, reply->real_challenge);
  1529. break;
  1530. }
  1531. if (s->iformat && CONFIG_RTSP_DEMUXER)
  1532. err = ff_rtsp_setup_input_streams(s, reply);
  1533. else if (CONFIG_RTSP_MUXER)
  1534. err = ff_rtsp_setup_output_streams(s, host);
  1535. if (err)
  1536. goto fail;
  1537. do {
  1538. int lower_transport = ff_log2_tab[lower_transport_mask &
  1539. ~(lower_transport_mask - 1)];
  1540. err = ff_rtsp_make_setup_request(s, host, port, lower_transport,
  1541. rt->server_type == RTSP_SERVER_REAL ?
  1542. real_challenge : NULL);
  1543. if (err < 0)
  1544. goto fail;
  1545. lower_transport_mask &= ~(1 << lower_transport);
  1546. if (lower_transport_mask == 0 && err == 1) {
  1547. err = AVERROR(EPROTONOSUPPORT);
  1548. goto fail;
  1549. }
  1550. } while (err);
  1551. rt->lower_transport_mask = lower_transport_mask;
  1552. av_strlcpy(rt->real_challenge, real_challenge, sizeof(rt->real_challenge));
  1553. rt->state = RTSP_STATE_IDLE;
  1554. rt->seek_timestamp = 0; /* default is to start stream at position zero */
  1555. return 0;
  1556. fail:
  1557. ff_rtsp_close_streams(s);
  1558. ff_rtsp_close_connections(s);
  1559. if (reply->status_code >=300 && reply->status_code < 400 && s->iformat) {
  1560. av_strlcpy(s->filename, reply->location, sizeof(s->filename));
  1561. av_log(s, AV_LOG_INFO, "Status %d: Redirecting to %s\n",
  1562. reply->status_code,
  1563. s->filename);
  1564. goto redirect;
  1565. }
  1566. ff_network_close();
  1567. return err;
  1568. }
  1569. #endif /* CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER */
  1570. #if CONFIG_RTPDEC
  1571. static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
  1572. uint8_t *buf, int buf_size, int64_t wait_end)
  1573. {
  1574. RTSPState *rt = s->priv_data;
  1575. RTSPStream *rtsp_st;
  1576. int n, i, ret, tcp_fd, timeout_cnt = 0;
  1577. int max_p = 0;
  1578. struct pollfd *p = rt->p;
  1579. int *fds = NULL, fdsnum, fdsidx;
  1580. for (;;) {
  1581. if (ff_check_interrupt(&s->interrupt_callback))
  1582. return AVERROR_EXIT;
  1583. if (wait_end && wait_end - av_gettime() < 0)
  1584. return AVERROR(EAGAIN);
  1585. max_p = 0;
  1586. if (rt->rtsp_hd) {
  1587. tcp_fd = ffurl_get_file_handle(rt->rtsp_hd);
  1588. p[max_p].fd = tcp_fd;
  1589. p[max_p++].events = POLLIN;
  1590. } else {
  1591. tcp_fd = -1;
  1592. }
  1593. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1594. rtsp_st = rt->rtsp_streams[i];
  1595. if (rtsp_st->rtp_handle) {
  1596. if (ret = ffurl_get_multi_file_handle(rtsp_st->rtp_handle,
  1597. &fds, &fdsnum)) {
  1598. av_log(s, AV_LOG_ERROR, "Unable to recover rtp ports\n");
  1599. return ret;
  1600. }
  1601. if (fdsnum != 2) {
  1602. av_log(s, AV_LOG_ERROR,
  1603. "Number of fds %d not supported\n", fdsnum);
  1604. return AVERROR_INVALIDDATA;
  1605. }
  1606. for (fdsidx = 0; fdsidx < fdsnum; fdsidx++) {
  1607. p[max_p].fd = fds[fdsidx];
  1608. p[max_p++].events = POLLIN;
  1609. }
  1610. av_free(fds);
  1611. }
  1612. }
  1613. n = poll(p, max_p, POLL_TIMEOUT_MS);
  1614. if (n > 0) {
  1615. int j = 1 - (tcp_fd == -1);
  1616. timeout_cnt = 0;
  1617. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1618. rtsp_st = rt->rtsp_streams[i];
  1619. if (rtsp_st->rtp_handle) {
  1620. if (p[j].revents & POLLIN || p[j+1].revents & POLLIN) {
  1621. ret = ffurl_read(rtsp_st->rtp_handle, buf, buf_size);
  1622. if (ret > 0) {
  1623. *prtsp_st = rtsp_st;
  1624. return ret;
  1625. }
  1626. }
  1627. j+=2;
  1628. }
  1629. }
  1630. #if CONFIG_RTSP_DEMUXER
  1631. if (tcp_fd != -1 && p[0].revents & POLLIN) {
  1632. if (rt->rtsp_flags & RTSP_FLAG_LISTEN) {
  1633. if (rt->state == RTSP_STATE_STREAMING) {
  1634. if (!ff_rtsp_parse_streaming_commands(s))
  1635. return AVERROR_EOF;
  1636. else
  1637. av_log(s, AV_LOG_WARNING,
  1638. "Unable to answer to TEARDOWN\n");
  1639. } else
  1640. return 0;
  1641. } else {
  1642. RTSPMessageHeader reply;
  1643. ret = ff_rtsp_read_reply(s, &reply, NULL, 0, NULL);
  1644. if (ret < 0)
  1645. return ret;
  1646. /* XXX: parse message */
  1647. if (rt->state != RTSP_STATE_STREAMING)
  1648. return 0;
  1649. }
  1650. }
  1651. #endif
  1652. } else if (n == 0 && ++timeout_cnt >= MAX_TIMEOUTS) {
  1653. return AVERROR(ETIMEDOUT);
  1654. } else if (n < 0 && errno != EINTR)
  1655. return AVERROR(errno);
  1656. }
  1657. }
  1658. static int pick_stream(AVFormatContext *s, RTSPStream **rtsp_st,
  1659. const uint8_t *buf, int len)
  1660. {
  1661. RTSPState *rt = s->priv_data;
  1662. int i;
  1663. if (len < 0)
  1664. return len;
  1665. if (rt->nb_rtsp_streams == 1) {
  1666. *rtsp_st = rt->rtsp_streams[0];
  1667. return len;
  1668. }
  1669. if (len >= 8 && rt->transport == RTSP_TRANSPORT_RTP) {
  1670. if (RTP_PT_IS_RTCP(rt->recvbuf[1])) {
  1671. int no_ssrc = 0;
  1672. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1673. RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
  1674. if (!rtpctx)
  1675. continue;
  1676. if (rtpctx->ssrc == AV_RB32(&buf[4])) {
  1677. *rtsp_st = rt->rtsp_streams[i];
  1678. return len;
  1679. }
  1680. if (!rtpctx->ssrc)
  1681. no_ssrc = 1;
  1682. }
  1683. if (no_ssrc) {
  1684. av_log(s, AV_LOG_WARNING,
  1685. "Unable to pick stream for packet - SSRC not known for "
  1686. "all streams\n");
  1687. return AVERROR(EAGAIN);
  1688. }
  1689. } else {
  1690. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1691. if ((buf[1] & 0x7f) == rt->rtsp_streams[i]->sdp_payload_type) {
  1692. *rtsp_st = rt->rtsp_streams[i];
  1693. return len;
  1694. }
  1695. }
  1696. }
  1697. }
  1698. av_log(s, AV_LOG_WARNING, "Unable to pick stream for packet\n");
  1699. return AVERROR(EAGAIN);
  1700. }
  1701. int ff_rtsp_fetch_packet(AVFormatContext *s, AVPacket *pkt)
  1702. {
  1703. RTSPState *rt = s->priv_data;
  1704. int ret, len;
  1705. RTSPStream *rtsp_st, *first_queue_st = NULL;
  1706. int64_t wait_end = 0;
  1707. if (rt->nb_byes == rt->nb_rtsp_streams)
  1708. return AVERROR_EOF;
  1709. /* get next frames from the same RTP packet */
  1710. if (rt->cur_transport_priv) {
  1711. if (rt->transport == RTSP_TRANSPORT_RDT) {
  1712. ret = ff_rdt_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
  1713. } else if (rt->transport == RTSP_TRANSPORT_RTP) {
  1714. ret = ff_rtp_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
  1715. } else if (rt->ts && CONFIG_RTPDEC) {
  1716. ret = ff_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf + rt->recvbuf_pos, rt->recvbuf_len - rt->recvbuf_pos);
  1717. if (ret >= 0) {
  1718. rt->recvbuf_pos += ret;
  1719. ret = rt->recvbuf_pos < rt->recvbuf_len;
  1720. }
  1721. } else
  1722. ret = -1;
  1723. if (ret == 0) {
  1724. rt->cur_transport_priv = NULL;
  1725. return 0;
  1726. } else if (ret == 1) {
  1727. return 0;
  1728. } else
  1729. rt->cur_transport_priv = NULL;
  1730. }
  1731. redo:
  1732. if (rt->transport == RTSP_TRANSPORT_RTP) {
  1733. int i;
  1734. int64_t first_queue_time = 0;
  1735. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1736. RTPDemuxContext *rtpctx = rt->rtsp_streams[i]->transport_priv;
  1737. int64_t queue_time;
  1738. if (!rtpctx)
  1739. continue;
  1740. queue_time = ff_rtp_queued_packet_time(rtpctx);
  1741. if (queue_time && (queue_time - first_queue_time < 0 ||
  1742. !first_queue_time)) {
  1743. first_queue_time = queue_time;
  1744. first_queue_st = rt->rtsp_streams[i];
  1745. }
  1746. }
  1747. if (first_queue_time) {
  1748. wait_end = first_queue_time + s->max_delay;
  1749. } else {
  1750. wait_end = 0;
  1751. first_queue_st = NULL;
  1752. }
  1753. }
  1754. /* read next RTP packet */
  1755. if (!rt->recvbuf) {
  1756. rt->recvbuf = av_malloc(RECVBUF_SIZE);
  1757. if (!rt->recvbuf)
  1758. return AVERROR(ENOMEM);
  1759. }
  1760. switch(rt->lower_transport) {
  1761. default:
  1762. #if CONFIG_RTSP_DEMUXER
  1763. case RTSP_LOWER_TRANSPORT_TCP:
  1764. len = ff_rtsp_tcp_read_packet(s, &rtsp_st, rt->recvbuf, RECVBUF_SIZE);
  1765. break;
  1766. #endif
  1767. case RTSP_LOWER_TRANSPORT_UDP:
  1768. case RTSP_LOWER_TRANSPORT_UDP_MULTICAST:
  1769. len = udp_read_packet(s, &rtsp_st, rt->recvbuf, RECVBUF_SIZE, wait_end);
  1770. if (len > 0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
  1771. ff_rtp_check_and_send_back_rr(rtsp_st->transport_priv, rtsp_st->rtp_handle, NULL, len);
  1772. break;
  1773. case RTSP_LOWER_TRANSPORT_CUSTOM:
  1774. if (first_queue_st && rt->transport == RTSP_TRANSPORT_RTP &&
  1775. wait_end && wait_end < av_gettime())
  1776. len = AVERROR(EAGAIN);
  1777. else
  1778. len = ffio_read_partial(s->pb, rt->recvbuf, RECVBUF_SIZE);
  1779. len = pick_stream(s, &rtsp_st, rt->recvbuf, len);
  1780. if (len > 0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
  1781. ff_rtp_check_and_send_back_rr(rtsp_st->transport_priv, NULL, s->pb, len);
  1782. break;
  1783. }
  1784. if (len == AVERROR(EAGAIN) && first_queue_st &&
  1785. rt->transport == RTSP_TRANSPORT_RTP) {
  1786. rtsp_st = first_queue_st;
  1787. ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, NULL, 0);
  1788. goto end;
  1789. }
  1790. if (len < 0)
  1791. return len;
  1792. if (len == 0)
  1793. return AVERROR_EOF;
  1794. if (rt->transport == RTSP_TRANSPORT_RDT) {
  1795. ret = ff_rdt_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
  1796. } else if (rt->transport == RTSP_TRANSPORT_RTP) {
  1797. ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, &rt->recvbuf, len);
  1798. if (rtsp_st->feedback) {
  1799. AVIOContext *pb = NULL;
  1800. if (rt->lower_transport == RTSP_LOWER_TRANSPORT_CUSTOM)
  1801. pb = s->pb;
  1802. ff_rtp_send_rtcp_feedback(rtsp_st->transport_priv, rtsp_st->rtp_handle, pb);
  1803. }
  1804. if (ret < 0) {
  1805. /* Either bad packet, or a RTCP packet. Check if the
  1806. * first_rtcp_ntp_time field was initialized. */
  1807. RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
  1808. if (rtpctx->first_rtcp_ntp_time != AV_NOPTS_VALUE) {
  1809. /* first_rtcp_ntp_time has been initialized for this stream,
  1810. * copy the same value to all other uninitialized streams,
  1811. * in order to map their timestamp origin to the same ntp time
  1812. * as this one. */
  1813. int i;
  1814. AVStream *st = NULL;
  1815. if (rtsp_st->stream_index >= 0)
  1816. st = s->streams[rtsp_st->stream_index];
  1817. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1818. RTPDemuxContext *rtpctx2 = rt->rtsp_streams[i]->transport_priv;
  1819. AVStream *st2 = NULL;
  1820. if (rt->rtsp_streams[i]->stream_index >= 0)
  1821. st2 = s->streams[rt->rtsp_streams[i]->stream_index];
  1822. if (rtpctx2 && st && st2 &&
  1823. rtpctx2->first_rtcp_ntp_time == AV_NOPTS_VALUE) {
  1824. rtpctx2->first_rtcp_ntp_time = rtpctx->first_rtcp_ntp_time;
  1825. rtpctx2->rtcp_ts_offset = av_rescale_q(
  1826. rtpctx->rtcp_ts_offset, st->time_base,
  1827. st2->time_base);
  1828. }
  1829. }
  1830. }
  1831. if (ret == -RTCP_BYE) {
  1832. rt->nb_byes++;
  1833. av_log(s, AV_LOG_DEBUG, "Received BYE for stream %d (%d/%d)\n",
  1834. rtsp_st->stream_index, rt->nb_byes, rt->nb_rtsp_streams);
  1835. if (rt->nb_byes == rt->nb_rtsp_streams)
  1836. return AVERROR_EOF;
  1837. }
  1838. }
  1839. } else if (rt->ts && CONFIG_RTPDEC) {
  1840. ret = ff_mpegts_parse_packet(rt->ts, pkt, rt->recvbuf, len);
  1841. if (ret >= 0) {
  1842. if (ret < len) {
  1843. rt->recvbuf_len = len;
  1844. rt->recvbuf_pos = ret;
  1845. rt->cur_transport_priv = rt->ts;
  1846. return 1;
  1847. } else {
  1848. ret = 0;
  1849. }
  1850. }
  1851. } else {
  1852. return AVERROR_INVALIDDATA;
  1853. }
  1854. end:
  1855. if (ret < 0)
  1856. goto redo;
  1857. if (ret == 1)
  1858. /* more packets may follow, so we save the RTP context */
  1859. rt->cur_transport_priv = rtsp_st->transport_priv;
  1860. return ret;
  1861. }
  1862. #endif /* CONFIG_RTPDEC */
  1863. #if CONFIG_SDP_DEMUXER
  1864. static int sdp_probe(AVProbeData *p1)
  1865. {
  1866. const char *p = p1->buf, *p_end = p1->buf + p1->buf_size;
  1867. /* we look for a line beginning "c=IN IP" */
  1868. while (p < p_end && *p != '\0') {
  1869. if (p + sizeof("c=IN IP") - 1 < p_end &&
  1870. av_strstart(p, "c=IN IP", NULL))
  1871. return AVPROBE_SCORE_EXTENSION;
  1872. while (p < p_end - 1 && *p != '\n') p++;
  1873. if (++p >= p_end)
  1874. break;
  1875. if (*p == '\r')
  1876. p++;
  1877. }
  1878. return 0;
  1879. }
  1880. static int sdp_read_header(AVFormatContext *s)
  1881. {
  1882. RTSPState *rt = s->priv_data;
  1883. RTSPStream *rtsp_st;
  1884. int size, i, err;
  1885. char *content;
  1886. char url[1024];
  1887. if (!ff_network_init())
  1888. return AVERROR(EIO);
  1889. if (s->max_delay < 0) /* Not set by the caller */
  1890. s->max_delay = DEFAULT_REORDERING_DELAY;
  1891. if (rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)
  1892. rt->lower_transport = RTSP_LOWER_TRANSPORT_CUSTOM;
  1893. /* read the whole sdp file */
  1894. /* XXX: better loading */
  1895. content = av_malloc(SDP_MAX_SIZE);
  1896. size = avio_read(s->pb, content, SDP_MAX_SIZE - 1);
  1897. if (size <= 0) {
  1898. av_free(content);
  1899. return AVERROR_INVALIDDATA;
  1900. }
  1901. content[size] ='\0';
  1902. err = ff_sdp_parse(s, content);
  1903. av_free(content);
  1904. if (err) goto fail;
  1905. /* open each RTP stream */
  1906. for (i = 0; i < rt->nb_rtsp_streams; i++) {
  1907. char namebuf[50];
  1908. rtsp_st = rt->rtsp_streams[i];
  1909. if (!(rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)) {
  1910. getnameinfo((struct sockaddr*) &rtsp_st->sdp_ip, sizeof(rtsp_st->sdp_ip),
  1911. namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
  1912. ff_url_join(url, sizeof(url), "rtp", NULL,
  1913. namebuf, rtsp_st->sdp_port,
  1914. "?localport=%d&ttl=%d&connect=%d", rtsp_st->sdp_port,
  1915. rtsp_st->sdp_ttl,
  1916. rt->rtsp_flags & RTSP_FLAG_FILTER_SRC ? 1 : 0);
  1917. if (ffurl_open(&rtsp_st->rtp_handle, url, AVIO_FLAG_READ_WRITE,
  1918. &s->interrupt_callback, NULL) < 0) {
  1919. err = AVERROR_INVALIDDATA;
  1920. goto fail;
  1921. }
  1922. }
  1923. if ((err = ff_rtsp_open_transport_ctx(s, rtsp_st)))
  1924. goto fail;
  1925. }
  1926. return 0;
  1927. fail:
  1928. ff_rtsp_close_streams(s);
  1929. ff_network_close();
  1930. return err;
  1931. }
  1932. static int sdp_read_close(AVFormatContext *s)
  1933. {
  1934. ff_rtsp_close_streams(s);
  1935. ff_network_close();
  1936. return 0;
  1937. }
  1938. static const AVClass sdp_demuxer_class = {
  1939. .class_name = "SDP demuxer",
  1940. .item_name = av_default_item_name,
  1941. .option = sdp_options,
  1942. .version = LIBAVUTIL_VERSION_INT,
  1943. };
  1944. AVInputFormat ff_sdp_demuxer = {
  1945. .name = "sdp",
  1946. .long_name = NULL_IF_CONFIG_SMALL("SDP"),
  1947. .priv_data_size = sizeof(RTSPState),
  1948. .read_probe = sdp_probe,
  1949. .read_header = sdp_read_header,
  1950. .read_packet = ff_rtsp_fetch_packet,
  1951. .read_close = sdp_read_close,
  1952. .priv_class = &sdp_demuxer_class,
  1953. };
  1954. #endif /* CONFIG_SDP_DEMUXER */
  1955. #if CONFIG_RTP_DEMUXER
  1956. static int rtp_probe(AVProbeData *p)
  1957. {
  1958. if (av_strstart(p->filename, "rtp:", NULL))
  1959. return AVPROBE_SCORE_MAX;
  1960. return 0;
  1961. }
  1962. static int rtp_read_header(AVFormatContext *s)
  1963. {
  1964. uint8_t recvbuf[RTP_MAX_PACKET_LENGTH];
  1965. char host[500], sdp[500];
  1966. int ret, port;
  1967. URLContext* in = NULL;
  1968. int payload_type;
  1969. AVCodecContext codec = { 0 };
  1970. struct sockaddr_storage addr;
  1971. AVIOContext pb;
  1972. socklen_t addrlen = sizeof(addr);
  1973. RTSPState *rt = s->priv_data;
  1974. if (!ff_network_init())
  1975. return AVERROR(EIO);
  1976. ret = ffurl_open(&in, s->filename, AVIO_FLAG_READ,
  1977. &s->interrupt_callback, NULL);
  1978. if (ret)
  1979. goto fail;
  1980. while (1) {
  1981. ret = ffurl_read(in, recvbuf, sizeof(recvbuf));
  1982. if (ret == AVERROR(EAGAIN))
  1983. continue;
  1984. if (ret < 0)
  1985. goto fail;
  1986. if (ret < 12) {
  1987. av_log(s, AV_LOG_WARNING, "Received too short packet\n");
  1988. continue;
  1989. }
  1990. if ((recvbuf[0] & 0xc0) != 0x80) {
  1991. av_log(s, AV_LOG_WARNING, "Unsupported RTP version packet "
  1992. "received\n");
  1993. continue;
  1994. }
  1995. if (RTP_PT_IS_RTCP(recvbuf[1]))
  1996. continue;
  1997. payload_type = recvbuf[1] & 0x7f;
  1998. break;
  1999. }
  2000. getsockname(ffurl_get_file_handle(in), (struct sockaddr*) &addr, &addrlen);
  2001. ffurl_close(in);
  2002. in = NULL;
  2003. if (ff_rtp_get_codec_info(&codec, payload_type)) {
  2004. av_log(s, AV_LOG_ERROR, "Unable to receive RTP payload type %d "
  2005. "without an SDP file describing it\n",
  2006. payload_type);
  2007. goto fail;
  2008. }
  2009. if (codec.codec_type != AVMEDIA_TYPE_DATA) {
  2010. av_log(s, AV_LOG_WARNING, "Guessing on RTP content - if not received "
  2011. "properly you need an SDP file "
  2012. "describing it\n");
  2013. }
  2014. av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &port,
  2015. NULL, 0, s->filename);
  2016. snprintf(sdp, sizeof(sdp),
  2017. "v=0\r\nc=IN IP%d %s\r\nm=%s %d RTP/AVP %d\r\n",
  2018. addr.ss_family == AF_INET ? 4 : 6, host,
  2019. codec.codec_type == AVMEDIA_TYPE_DATA ? "application" :
  2020. codec.codec_type == AVMEDIA_TYPE_VIDEO ? "video" : "audio",
  2021. port, payload_type);
  2022. av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", sdp);
  2023. ffio_init_context(&pb, sdp, strlen(sdp), 0, NULL, NULL, NULL, NULL);
  2024. s->pb = &pb;
  2025. /* sdp_read_header initializes this again */
  2026. ff_network_close();
  2027. rt->media_type_mask = (1 << (AVMEDIA_TYPE_DATA+1)) - 1;
  2028. ret = sdp_read_header(s);
  2029. s->pb = NULL;
  2030. return ret;
  2031. fail:
  2032. if (in)
  2033. ffurl_close(in);
  2034. ff_network_close();
  2035. return ret;
  2036. }
  2037. static const AVClass rtp_demuxer_class = {
  2038. .class_name = "RTP demuxer",
  2039. .item_name = av_default_item_name,
  2040. .option = rtp_options,
  2041. .version = LIBAVUTIL_VERSION_INT,
  2042. };
  2043. AVInputFormat ff_rtp_demuxer = {
  2044. .name = "rtp",
  2045. .long_name = NULL_IF_CONFIG_SMALL("RTP input"),
  2046. .priv_data_size = sizeof(RTSPState),
  2047. .read_probe = rtp_probe,
  2048. .read_header = rtp_read_header,
  2049. .read_packet = ff_rtsp_fetch_packet,
  2050. .read_close = sdp_read_close,
  2051. .flags = AVFMT_NOFILE,
  2052. .priv_class = &rtp_demuxer_class,
  2053. };
  2054. #endif /* CONFIG_RTP_DEMUXER */