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.

542 lines
18KB

  1. /*
  2. * copyright (c) 2007 Luca Abeni
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <string.h>
  21. #include "libavutil/avstring.h"
  22. #include "libavutil/base64.h"
  23. #include "libavcodec/xiph.h"
  24. #include "avformat.h"
  25. #include "internal.h"
  26. #include "avc.h"
  27. #include "rtp.h"
  28. #if CONFIG_NETWORK
  29. #include "network.h"
  30. #endif
  31. #if CONFIG_RTP_MUXER
  32. #define MAX_EXTRADATA_SIZE ((INT_MAX - 10) / 2)
  33. struct sdp_session_level {
  34. int sdp_version; /**< protocol version (currently 0) */
  35. int id; /**< session ID */
  36. int version; /**< session version */
  37. int start_time; /**< session start time (NTP time, in seconds),
  38. or 0 in case of permanent session */
  39. int end_time; /**< session end time (NTP time, in seconds),
  40. or 0 if the session is not bounded */
  41. int ttl; /**< TTL, in case of multicast stream */
  42. const char *user; /**< username of the session's creator */
  43. const char *src_addr; /**< IP address of the machine from which the session was created */
  44. const char *src_type; /**< address type of src_addr */
  45. const char *dst_addr; /**< destination IP address (can be multicast) */
  46. const char *dst_type; /**< destination IP address type */
  47. const char *name; /**< session name (can be an empty string) */
  48. };
  49. static void sdp_write_address(char *buff, int size, const char *dest_addr,
  50. const char *dest_type, int ttl)
  51. {
  52. if (dest_addr) {
  53. if (!dest_type)
  54. dest_type = "IP4";
  55. if (ttl > 0 && !strcmp(dest_type, "IP4")) {
  56. /* The TTL should only be specified for IPv4 multicast addresses,
  57. * not for IPv6. */
  58. av_strlcatf(buff, size, "c=IN %s %s/%d\r\n", dest_type, dest_addr, ttl);
  59. } else {
  60. av_strlcatf(buff, size, "c=IN %s %s\r\n", dest_type, dest_addr);
  61. }
  62. }
  63. }
  64. static void sdp_write_header(char *buff, int size, struct sdp_session_level *s)
  65. {
  66. av_strlcatf(buff, size, "v=%d\r\n"
  67. "o=- %d %d IN %s %s\r\n"
  68. "s=%s\r\n",
  69. s->sdp_version,
  70. s->id, s->version, s->src_type, s->src_addr,
  71. s->name);
  72. sdp_write_address(buff, size, s->dst_addr, s->dst_type, s->ttl);
  73. av_strlcatf(buff, size, "t=%d %d\r\n"
  74. "a=tool:libavformat " AV_STRINGIFY(LIBAVFORMAT_VERSION) "\r\n",
  75. s->start_time, s->end_time);
  76. }
  77. #if CONFIG_NETWORK
  78. static int resolve_destination(char *dest_addr, int size, char *type,
  79. int type_size)
  80. {
  81. struct addrinfo hints, *ai;
  82. int is_multicast;
  83. av_strlcpy(type, "IP4", type_size);
  84. if (!dest_addr[0])
  85. return 0;
  86. /* Resolve the destination, since it must be written
  87. * as a numeric IP address in the SDP. */
  88. memset(&hints, 0, sizeof(hints));
  89. if (getaddrinfo(dest_addr, NULL, &hints, &ai))
  90. return 0;
  91. getnameinfo(ai->ai_addr, ai->ai_addrlen, dest_addr, size,
  92. NULL, 0, NI_NUMERICHOST);
  93. #ifdef AF_INET6
  94. if (ai->ai_family == AF_INET6)
  95. av_strlcpy(type, "IP6", type_size);
  96. #endif
  97. is_multicast = ff_is_multicast_address(ai->ai_addr);
  98. freeaddrinfo(ai);
  99. return is_multicast;
  100. }
  101. #else
  102. static int resolve_destination(char *dest_addr, int size, char *type,
  103. int type_size)
  104. {
  105. return 0;
  106. }
  107. #endif
  108. static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url)
  109. {
  110. int port;
  111. const char *p;
  112. char proto[32];
  113. av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url);
  114. *ttl = 0;
  115. if (strcmp(proto, "rtp")) {
  116. /* The url isn't for the actual rtp sessions,
  117. * don't parse out anything else than the destination.
  118. */
  119. return 0;
  120. }
  121. p = strchr(url, '?');
  122. if (p) {
  123. char buff[64];
  124. if (find_info_tag(buff, sizeof(buff), "ttl", p)) {
  125. *ttl = strtol(buff, NULL, 10);
  126. } else {
  127. *ttl = 5;
  128. }
  129. }
  130. return port;
  131. }
  132. #define MAX_PSET_SIZE 1024
  133. static char *extradata2psets(AVCodecContext *c)
  134. {
  135. char *psets, *p;
  136. const uint8_t *r;
  137. const char *pset_string = "; sprop-parameter-sets=";
  138. if (c->extradata_size > MAX_EXTRADATA_SIZE) {
  139. av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
  140. return NULL;
  141. }
  142. if (c->extradata[0] == 1) {
  143. uint8_t *dummy_p;
  144. int dummy_int;
  145. AVBitStreamFilterContext *bsfc= av_bitstream_filter_init("h264_mp4toannexb");
  146. if (!bsfc) {
  147. av_log(c, AV_LOG_ERROR, "Cannot open the h264_mp4toannexb BSF!\n");
  148. return NULL;
  149. }
  150. av_bitstream_filter_filter(bsfc, c, NULL, &dummy_p, &dummy_int, NULL, 0, 0);
  151. av_bitstream_filter_close(bsfc);
  152. }
  153. psets = av_mallocz(MAX_PSET_SIZE);
  154. if (psets == NULL) {
  155. av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the parameter sets.\n");
  156. return NULL;
  157. }
  158. memcpy(psets, pset_string, strlen(pset_string));
  159. p = psets + strlen(pset_string);
  160. r = ff_avc_find_startcode(c->extradata, c->extradata + c->extradata_size);
  161. while (r < c->extradata + c->extradata_size) {
  162. const uint8_t *r1;
  163. uint8_t nal_type;
  164. while (!*(r++));
  165. nal_type = *r & 0x1f;
  166. r1 = ff_avc_find_startcode(r, c->extradata + c->extradata_size);
  167. if (nal_type != 7 && nal_type != 8) { /* Only output SPS and PPS */
  168. r = r1;
  169. continue;
  170. }
  171. if (p != (psets + strlen(pset_string))) {
  172. *p = ',';
  173. p++;
  174. }
  175. if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) {
  176. av_log(c, AV_LOG_ERROR, "Cannot Base64-encode %td %td!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
  177. av_free(psets);
  178. return NULL;
  179. }
  180. p += strlen(p);
  181. r = r1;
  182. }
  183. return psets;
  184. }
  185. static char *extradata2config(AVCodecContext *c)
  186. {
  187. char *config;
  188. if (c->extradata_size > MAX_EXTRADATA_SIZE) {
  189. av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
  190. return NULL;
  191. }
  192. config = av_malloc(10 + c->extradata_size * 2);
  193. if (config == NULL) {
  194. av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n");
  195. return NULL;
  196. }
  197. memcpy(config, "; config=", 9);
  198. ff_data_to_hex(config + 9, c->extradata, c->extradata_size, 0);
  199. config[9 + c->extradata_size * 2] = 0;
  200. return config;
  201. }
  202. static char *xiph_extradata2config(AVCodecContext *c)
  203. {
  204. char *config, *encoded_config;
  205. uint8_t *header_start[3];
  206. int headers_len, header_len[3], config_len;
  207. int first_header_size;
  208. switch (c->codec_id) {
  209. case CODEC_ID_THEORA:
  210. first_header_size = 42;
  211. break;
  212. case CODEC_ID_VORBIS:
  213. first_header_size = 30;
  214. break;
  215. default:
  216. av_log(c, AV_LOG_ERROR, "Unsupported Xiph codec ID\n");
  217. return NULL;
  218. }
  219. if (ff_split_xiph_headers(c->extradata, c->extradata_size,
  220. first_header_size, header_start,
  221. header_len) < 0) {
  222. av_log(c, AV_LOG_ERROR, "Extradata corrupt.\n");
  223. return NULL;
  224. }
  225. headers_len = header_len[0] + header_len[2];
  226. config_len = 4 + // count
  227. 3 + // ident
  228. 2 + // packet size
  229. 1 + // header count
  230. 2 + // header size
  231. headers_len; // and the rest
  232. config = av_malloc(config_len);
  233. if (!config)
  234. goto xiph_fail;
  235. encoded_config = av_malloc(AV_BASE64_SIZE(config_len));
  236. if (!encoded_config) {
  237. av_free(config);
  238. goto xiph_fail;
  239. }
  240. config[0] = config[1] = config[2] = 0;
  241. config[3] = 1;
  242. config[4] = (RTP_XIPH_IDENT >> 16) & 0xff;
  243. config[5] = (RTP_XIPH_IDENT >> 8) & 0xff;
  244. config[6] = (RTP_XIPH_IDENT ) & 0xff;
  245. config[7] = (headers_len >> 8) & 0xff;
  246. config[8] = headers_len & 0xff;
  247. config[9] = 2;
  248. config[10] = header_len[0];
  249. config[11] = 0; // size of comment header; nonexistent
  250. memcpy(config + 12, header_start[0], header_len[0]);
  251. memcpy(config + 12 + header_len[0], header_start[2], header_len[2]);
  252. av_base64_encode(encoded_config, AV_BASE64_SIZE(config_len),
  253. config, config_len);
  254. av_free(config);
  255. return encoded_config;
  256. xiph_fail:
  257. av_log(c, AV_LOG_ERROR,
  258. "Not enough memory for configuration string\n");
  259. return NULL;
  260. }
  261. static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type)
  262. {
  263. char *config = NULL;
  264. switch (c->codec_id) {
  265. case CODEC_ID_H264:
  266. if (c->extradata_size) {
  267. config = extradata2psets(c);
  268. }
  269. av_strlcatf(buff, size, "a=rtpmap:%d H264/90000\r\n"
  270. "a=fmtp:%d packetization-mode=1%s\r\n",
  271. payload_type,
  272. payload_type, config ? config : "");
  273. break;
  274. case CODEC_ID_H263:
  275. case CODEC_ID_H263P:
  276. /* a=framesize is required by 3GPP TS 26.234 (PSS). It
  277. * actually specifies the maximum video size, but we only know
  278. * the current size. This is required for playback on Android
  279. * stagefright and on Samsung bada. */
  280. av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n"
  281. "a=framesize:%d %d-%d\r\n",
  282. payload_type,
  283. payload_type, c->width, c->height);
  284. break;
  285. case CODEC_ID_MPEG4:
  286. if (c->extradata_size) {
  287. config = extradata2config(c);
  288. }
  289. av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
  290. "a=fmtp:%d profile-level-id=1%s\r\n",
  291. payload_type,
  292. payload_type, config ? config : "");
  293. break;
  294. case CODEC_ID_AAC:
  295. if (c->extradata_size) {
  296. config = extradata2config(c);
  297. } else {
  298. /* FIXME: maybe we can forge config information based on the
  299. * codec parameters...
  300. */
  301. av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n");
  302. return NULL;
  303. }
  304. if (config == NULL) {
  305. return NULL;
  306. }
  307. av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n"
  308. "a=fmtp:%d profile-level-id=1;"
  309. "mode=AAC-hbr;sizelength=13;indexlength=3;"
  310. "indexdeltalength=3%s\r\n",
  311. payload_type, c->sample_rate, c->channels,
  312. payload_type, config);
  313. break;
  314. case CODEC_ID_PCM_S16BE:
  315. if (payload_type >= RTP_PT_PRIVATE)
  316. av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
  317. payload_type,
  318. c->sample_rate, c->channels);
  319. break;
  320. case CODEC_ID_PCM_MULAW:
  321. if (payload_type >= RTP_PT_PRIVATE)
  322. av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
  323. payload_type,
  324. c->sample_rate, c->channels);
  325. break;
  326. case CODEC_ID_PCM_ALAW:
  327. if (payload_type >= RTP_PT_PRIVATE)
  328. av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
  329. payload_type,
  330. c->sample_rate, c->channels);
  331. break;
  332. case CODEC_ID_AMR_NB:
  333. av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n"
  334. "a=fmtp:%d octet-align=1\r\n",
  335. payload_type, c->sample_rate, c->channels,
  336. payload_type);
  337. break;
  338. case CODEC_ID_AMR_WB:
  339. av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n"
  340. "a=fmtp:%d octet-align=1\r\n",
  341. payload_type, c->sample_rate, c->channels,
  342. payload_type);
  343. break;
  344. case CODEC_ID_VORBIS:
  345. if (c->extradata_size)
  346. config = xiph_extradata2config(c);
  347. else
  348. av_log(c, AV_LOG_ERROR, "Vorbis configuration info missing\n");
  349. if (!config)
  350. return NULL;
  351. av_strlcatf(buff, size, "a=rtpmap:%d vorbis/%d/%d\r\n"
  352. "a=fmtp:%d configuration=%s\r\n",
  353. payload_type, c->sample_rate, c->channels,
  354. payload_type, config);
  355. break;
  356. case CODEC_ID_THEORA: {
  357. const char *pix_fmt;
  358. if (c->extradata_size)
  359. config = xiph_extradata2config(c);
  360. else
  361. av_log(c, AV_LOG_ERROR, "Theora configuation info missing\n");
  362. if (!config)
  363. return NULL;
  364. switch (c->pix_fmt) {
  365. case PIX_FMT_YUV420P:
  366. pix_fmt = "YCbCr-4:2:0";
  367. break;
  368. case PIX_FMT_YUV422P:
  369. pix_fmt = "YCbCr-4:2:2";
  370. break;
  371. case PIX_FMT_YUV444P:
  372. pix_fmt = "YCbCr-4:4:4";
  373. break;
  374. default:
  375. av_log(c, AV_LOG_ERROR, "Unsupported pixel format.\n");
  376. return NULL;
  377. }
  378. av_strlcatf(buff, size, "a=rtpmap:%d theora/90000\r\n"
  379. "a=fmtp:%d delivery-method=inline; "
  380. "width=%d; height=%d; sampling=%s; "
  381. "configuration=%s\r\n",
  382. payload_type, payload_type,
  383. c->width, c->height, pix_fmt, config);
  384. break;
  385. }
  386. case CODEC_ID_VP8:
  387. av_strlcatf(buff, size, "a=rtpmap:%d VP8/90000\r\n",
  388. payload_type);
  389. break;
  390. case CODEC_ID_ADPCM_G722:
  391. if (payload_type >= RTP_PT_PRIVATE)
  392. av_strlcatf(buff, size, "a=rtpmap:%d G722/%d/%d\r\n",
  393. payload_type,
  394. 8000, c->channels);
  395. break;
  396. default:
  397. /* Nothing special to do here... */
  398. break;
  399. }
  400. av_free(config);
  401. return buff;
  402. }
  403. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  404. {
  405. const char *type;
  406. int payload_type;
  407. payload_type = ff_rtp_get_payload_type(c);
  408. if (payload_type < 0) {
  409. payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO);
  410. }
  411. switch (c->codec_type) {
  412. case AVMEDIA_TYPE_VIDEO : type = "video" ; break;
  413. case AVMEDIA_TYPE_AUDIO : type = "audio" ; break;
  414. case AVMEDIA_TYPE_SUBTITLE: type = "text" ; break;
  415. default : type = "application"; break;
  416. }
  417. av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
  418. sdp_write_address(buff, size, dest_addr, dest_type, ttl);
  419. if (c->bit_rate) {
  420. av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000);
  421. }
  422. sdp_write_media_attributes(buff, size, c, payload_type);
  423. }
  424. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  425. {
  426. AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0);
  427. struct sdp_session_level s;
  428. int i, j, port, ttl, is_multicast;
  429. char dst[32], dst_type[5];
  430. memset(buff, 0, size);
  431. memset(&s, 0, sizeof(struct sdp_session_level));
  432. s.user = "-";
  433. s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
  434. s.src_type = "IP4";
  435. s.name = title ? title->value : "No Name";
  436. port = 0;
  437. ttl = 0;
  438. if (n_files == 1) {
  439. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
  440. is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
  441. sizeof(dst_type));
  442. if (!is_multicast)
  443. ttl = 0;
  444. if (dst[0]) {
  445. s.dst_addr = dst;
  446. s.dst_type = dst_type;
  447. s.ttl = ttl;
  448. if (!strcmp(dst_type, "IP6")) {
  449. s.src_addr = "::1";
  450. s.src_type = "IP6";
  451. }
  452. }
  453. }
  454. sdp_write_header(buff, size, &s);
  455. dst[0] = 0;
  456. for (i = 0; i < n_files; i++) {
  457. if (n_files != 1) {
  458. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
  459. is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
  460. sizeof(dst_type));
  461. if (!is_multicast)
  462. ttl = 0;
  463. }
  464. for (j = 0; j < ac[i]->nb_streams; j++) {
  465. ff_sdp_write_media(buff, size,
  466. ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
  467. dst_type, (port > 0) ? port + j * 2 : 0, ttl);
  468. if (port <= 0) {
  469. av_strlcatf(buff, size,
  470. "a=control:streamid=%d\r\n", i + j);
  471. }
  472. }
  473. }
  474. return 0;
  475. }
  476. #else
  477. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  478. {
  479. return AVERROR(ENOSYS);
  480. }
  481. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  482. {
  483. }
  484. #endif