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.

533 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. if (ai->ai_family == AF_INET6)
  94. av_strlcpy(type, "IP6", type_size);
  95. is_multicast = ff_is_multicast_address(ai->ai_addr);
  96. freeaddrinfo(ai);
  97. return is_multicast;
  98. }
  99. #else
  100. static int resolve_destination(char *dest_addr, int size, char *type,
  101. int type_size)
  102. {
  103. return 0;
  104. }
  105. #endif
  106. static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url)
  107. {
  108. int port;
  109. const char *p;
  110. char proto[32];
  111. av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url);
  112. *ttl = 0;
  113. if (strcmp(proto, "rtp")) {
  114. /* The url isn't for the actual rtp sessions,
  115. * don't parse out anything else than the destination.
  116. */
  117. return 0;
  118. }
  119. p = strchr(url, '?');
  120. if (p) {
  121. char buff[64];
  122. if (find_info_tag(buff, sizeof(buff), "ttl", p)) {
  123. *ttl = strtol(buff, NULL, 10);
  124. } else {
  125. *ttl = 5;
  126. }
  127. }
  128. return port;
  129. }
  130. #define MAX_PSET_SIZE 1024
  131. static char *extradata2psets(AVCodecContext *c)
  132. {
  133. char *psets, *p;
  134. const uint8_t *r;
  135. const char *pset_string = "; sprop-parameter-sets=";
  136. if (c->extradata_size > MAX_EXTRADATA_SIZE) {
  137. av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
  138. return NULL;
  139. }
  140. if (c->extradata[0] == 1) {
  141. uint8_t *dummy_p;
  142. int dummy_int;
  143. AVBitStreamFilterContext *bsfc= av_bitstream_filter_init("h264_mp4toannexb");
  144. if (!bsfc) {
  145. av_log(c, AV_LOG_ERROR, "Cannot open the h264_mp4toannexb BSF!\n");
  146. return NULL;
  147. }
  148. av_bitstream_filter_filter(bsfc, c, NULL, &dummy_p, &dummy_int, NULL, 0, 0);
  149. av_bitstream_filter_close(bsfc);
  150. }
  151. psets = av_mallocz(MAX_PSET_SIZE);
  152. if (psets == NULL) {
  153. av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the parameter sets.\n");
  154. return NULL;
  155. }
  156. memcpy(psets, pset_string, strlen(pset_string));
  157. p = psets + strlen(pset_string);
  158. r = ff_avc_find_startcode(c->extradata, c->extradata + c->extradata_size);
  159. while (r < c->extradata + c->extradata_size) {
  160. const uint8_t *r1;
  161. uint8_t nal_type;
  162. while (!*(r++));
  163. nal_type = *r & 0x1f;
  164. r1 = ff_avc_find_startcode(r, c->extradata + c->extradata_size);
  165. if (nal_type != 7 && nal_type != 8) { /* Only output SPS and PPS */
  166. r = r1;
  167. continue;
  168. }
  169. if (p != (psets + strlen(pset_string))) {
  170. *p = ',';
  171. p++;
  172. }
  173. if (av_base64_encode(p, MAX_PSET_SIZE - (p - psets), r, r1 - r) == NULL) {
  174. av_log(c, AV_LOG_ERROR, "Cannot Base64-encode %td %td!\n", MAX_PSET_SIZE - (p - psets), r1 - r);
  175. av_free(psets);
  176. return NULL;
  177. }
  178. p += strlen(p);
  179. r = r1;
  180. }
  181. return psets;
  182. }
  183. static char *extradata2config(AVCodecContext *c)
  184. {
  185. char *config;
  186. if (c->extradata_size > MAX_EXTRADATA_SIZE) {
  187. av_log(c, AV_LOG_ERROR, "Too much extradata!\n");
  188. return NULL;
  189. }
  190. config = av_malloc(10 + c->extradata_size * 2);
  191. if (config == NULL) {
  192. av_log(c, AV_LOG_ERROR, "Cannot allocate memory for the config info.\n");
  193. return NULL;
  194. }
  195. memcpy(config, "; config=", 9);
  196. ff_data_to_hex(config + 9, c->extradata, c->extradata_size, 0);
  197. config[9 + c->extradata_size * 2] = 0;
  198. return config;
  199. }
  200. static char *xiph_extradata2config(AVCodecContext *c)
  201. {
  202. char *config, *encoded_config;
  203. uint8_t *header_start[3];
  204. int headers_len, header_len[3], config_len;
  205. int first_header_size;
  206. switch (c->codec_id) {
  207. case CODEC_ID_THEORA:
  208. first_header_size = 42;
  209. break;
  210. case CODEC_ID_VORBIS:
  211. first_header_size = 30;
  212. break;
  213. default:
  214. av_log(c, AV_LOG_ERROR, "Unsupported Xiph codec ID\n");
  215. return NULL;
  216. }
  217. if (ff_split_xiph_headers(c->extradata, c->extradata_size,
  218. first_header_size, header_start,
  219. header_len) < 0) {
  220. av_log(c, AV_LOG_ERROR, "Extradata corrupt.\n");
  221. return NULL;
  222. }
  223. headers_len = header_len[0] + header_len[2];
  224. config_len = 4 + // count
  225. 3 + // ident
  226. 2 + // packet size
  227. 1 + // header count
  228. 2 + // header size
  229. headers_len; // and the rest
  230. config = av_malloc(config_len);
  231. if (!config)
  232. goto xiph_fail;
  233. encoded_config = av_malloc(AV_BASE64_SIZE(config_len));
  234. if (!encoded_config) {
  235. av_free(config);
  236. goto xiph_fail;
  237. }
  238. config[0] = config[1] = config[2] = 0;
  239. config[3] = 1;
  240. config[4] = (RTP_XIPH_IDENT >> 16) & 0xff;
  241. config[5] = (RTP_XIPH_IDENT >> 8) & 0xff;
  242. config[6] = (RTP_XIPH_IDENT ) & 0xff;
  243. config[7] = (headers_len >> 8) & 0xff;
  244. config[8] = headers_len & 0xff;
  245. config[9] = 2;
  246. config[10] = header_len[0];
  247. config[11] = 0; // size of comment header; nonexistent
  248. memcpy(config + 12, header_start[0], header_len[0]);
  249. memcpy(config + 12 + header_len[0], header_start[2], header_len[2]);
  250. av_base64_encode(encoded_config, AV_BASE64_SIZE(config_len),
  251. config, config_len);
  252. av_free(config);
  253. return encoded_config;
  254. xiph_fail:
  255. av_log(c, AV_LOG_ERROR,
  256. "Not enough memory for configuration string\n");
  257. return NULL;
  258. }
  259. static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type)
  260. {
  261. char *config = NULL;
  262. switch (c->codec_id) {
  263. case CODEC_ID_H264:
  264. if (c->extradata_size) {
  265. config = extradata2psets(c);
  266. }
  267. av_strlcatf(buff, size, "a=rtpmap:%d H264/90000\r\n"
  268. "a=fmtp:%d packetization-mode=1%s\r\n",
  269. payload_type,
  270. payload_type, config ? config : "");
  271. break;
  272. case CODEC_ID_H263:
  273. case CODEC_ID_H263P:
  274. av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type);
  275. break;
  276. case CODEC_ID_MPEG4:
  277. if (c->extradata_size) {
  278. config = extradata2config(c);
  279. }
  280. av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
  281. "a=fmtp:%d profile-level-id=1%s\r\n",
  282. payload_type,
  283. payload_type, config ? config : "");
  284. break;
  285. case CODEC_ID_AAC:
  286. if (c->extradata_size) {
  287. config = extradata2config(c);
  288. } else {
  289. /* FIXME: maybe we can forge config information based on the
  290. * codec parameters...
  291. */
  292. av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n");
  293. return NULL;
  294. }
  295. if (config == NULL) {
  296. return NULL;
  297. }
  298. av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n"
  299. "a=fmtp:%d profile-level-id=1;"
  300. "mode=AAC-hbr;sizelength=13;indexlength=3;"
  301. "indexdeltalength=3%s\r\n",
  302. payload_type, c->sample_rate, c->channels,
  303. payload_type, config);
  304. break;
  305. case CODEC_ID_PCM_S16BE:
  306. if (payload_type >= RTP_PT_PRIVATE)
  307. av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
  308. payload_type,
  309. c->sample_rate, c->channels);
  310. break;
  311. case CODEC_ID_PCM_MULAW:
  312. if (payload_type >= RTP_PT_PRIVATE)
  313. av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
  314. payload_type,
  315. c->sample_rate, c->channels);
  316. break;
  317. case CODEC_ID_PCM_ALAW:
  318. if (payload_type >= RTP_PT_PRIVATE)
  319. av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
  320. payload_type,
  321. c->sample_rate, c->channels);
  322. break;
  323. case CODEC_ID_AMR_NB:
  324. av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n"
  325. "a=fmtp:%d octet-align=1\r\n",
  326. payload_type, c->sample_rate, c->channels,
  327. payload_type);
  328. break;
  329. case CODEC_ID_AMR_WB:
  330. av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n"
  331. "a=fmtp:%d octet-align=1\r\n",
  332. payload_type, c->sample_rate, c->channels,
  333. payload_type);
  334. break;
  335. case CODEC_ID_VORBIS:
  336. if (c->extradata_size)
  337. config = xiph_extradata2config(c);
  338. else
  339. av_log(c, AV_LOG_ERROR, "Vorbis configuration info missing\n");
  340. if (!config)
  341. return NULL;
  342. av_strlcatf(buff, size, "a=rtpmap:%d vorbis/%d/%d\r\n"
  343. "a=fmtp:%d configuration=%s\r\n",
  344. payload_type, c->sample_rate, c->channels,
  345. payload_type, config);
  346. break;
  347. case CODEC_ID_THEORA: {
  348. const char *pix_fmt;
  349. if (c->extradata_size)
  350. config = xiph_extradata2config(c);
  351. else
  352. av_log(c, AV_LOG_ERROR, "Theora configuation info missing\n");
  353. if (!config)
  354. return NULL;
  355. switch (c->pix_fmt) {
  356. case PIX_FMT_YUV420P:
  357. pix_fmt = "YCbCr-4:2:0";
  358. break;
  359. case PIX_FMT_YUV422P:
  360. pix_fmt = "YCbCr-4:2:2";
  361. break;
  362. case PIX_FMT_YUV444P:
  363. pix_fmt = "YCbCr-4:4:4";
  364. break;
  365. default:
  366. av_log(c, AV_LOG_ERROR, "Unsupported pixel format.\n");
  367. return NULL;
  368. }
  369. av_strlcatf(buff, size, "a=rtpmap:%d theora/90000\r\n"
  370. "a=fmtp:%d delivery-method=inline; "
  371. "width=%d; height=%d; sampling=%s; "
  372. "configuration=%s\r\n",
  373. payload_type, payload_type,
  374. c->width, c->height, pix_fmt, config);
  375. break;
  376. }
  377. case CODEC_ID_VP8:
  378. av_strlcatf(buff, size, "a=rtpmap:%d VP8/90000\r\n",
  379. payload_type);
  380. break;
  381. case CODEC_ID_ADPCM_G722:
  382. if (payload_type >= RTP_PT_PRIVATE)
  383. av_strlcatf(buff, size, "a=rtpmap:%d G722/%d/%d\r\n",
  384. payload_type,
  385. 8000, c->channels);
  386. break;
  387. default:
  388. /* Nothing special to do here... */
  389. break;
  390. }
  391. av_free(config);
  392. return buff;
  393. }
  394. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  395. {
  396. const char *type;
  397. int payload_type;
  398. payload_type = ff_rtp_get_payload_type(c);
  399. if (payload_type < 0) {
  400. payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO);
  401. }
  402. switch (c->codec_type) {
  403. case AVMEDIA_TYPE_VIDEO : type = "video" ; break;
  404. case AVMEDIA_TYPE_AUDIO : type = "audio" ; break;
  405. case AVMEDIA_TYPE_SUBTITLE: type = "text" ; break;
  406. default : type = "application"; break;
  407. }
  408. av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
  409. sdp_write_address(buff, size, dest_addr, dest_type, ttl);
  410. if (c->bit_rate) {
  411. av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000);
  412. }
  413. sdp_write_media_attributes(buff, size, c, payload_type);
  414. }
  415. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  416. {
  417. AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0);
  418. struct sdp_session_level s;
  419. int i, j, port, ttl, is_multicast;
  420. char dst[32], dst_type[5];
  421. memset(buff, 0, size);
  422. memset(&s, 0, sizeof(struct sdp_session_level));
  423. s.user = "-";
  424. s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
  425. s.src_type = "IP4";
  426. s.name = title ? title->value : "No Name";
  427. port = 0;
  428. ttl = 0;
  429. if (n_files == 1) {
  430. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
  431. is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
  432. sizeof(dst_type));
  433. if (!is_multicast)
  434. ttl = 0;
  435. if (dst[0]) {
  436. s.dst_addr = dst;
  437. s.dst_type = dst_type;
  438. s.ttl = ttl;
  439. if (!strcmp(dst_type, "IP6")) {
  440. s.src_addr = "::1";
  441. s.src_type = "IP6";
  442. }
  443. }
  444. }
  445. sdp_write_header(buff, size, &s);
  446. dst[0] = 0;
  447. for (i = 0; i < n_files; i++) {
  448. if (n_files != 1) {
  449. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
  450. is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
  451. sizeof(dst_type));
  452. if (!is_multicast)
  453. ttl = 0;
  454. }
  455. for (j = 0; j < ac[i]->nb_streams; j++) {
  456. ff_sdp_write_media(buff, size,
  457. ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
  458. dst_type, (port > 0) ? port + j * 2 : 0, ttl);
  459. if (port <= 0) {
  460. av_strlcatf(buff, size,
  461. "a=control:streamid=%d\r\n", i + j);
  462. }
  463. }
  464. }
  465. return 0;
  466. }
  467. #else
  468. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  469. {
  470. return AVERROR(ENOSYS);
  471. }
  472. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  473. {
  474. }
  475. #endif