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.

535 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. av_strlcatf(buff, size, "a=rtpmap:%d H263-2000/90000\r\n", payload_type);
  277. break;
  278. case CODEC_ID_MPEG4:
  279. if (c->extradata_size) {
  280. config = extradata2config(c);
  281. }
  282. av_strlcatf(buff, size, "a=rtpmap:%d MP4V-ES/90000\r\n"
  283. "a=fmtp:%d profile-level-id=1%s\r\n",
  284. payload_type,
  285. payload_type, config ? config : "");
  286. break;
  287. case CODEC_ID_AAC:
  288. if (c->extradata_size) {
  289. config = extradata2config(c);
  290. } else {
  291. /* FIXME: maybe we can forge config information based on the
  292. * codec parameters...
  293. */
  294. av_log(c, AV_LOG_ERROR, "AAC with no global headers is currently not supported.\n");
  295. return NULL;
  296. }
  297. if (config == NULL) {
  298. return NULL;
  299. }
  300. av_strlcatf(buff, size, "a=rtpmap:%d MPEG4-GENERIC/%d/%d\r\n"
  301. "a=fmtp:%d profile-level-id=1;"
  302. "mode=AAC-hbr;sizelength=13;indexlength=3;"
  303. "indexdeltalength=3%s\r\n",
  304. payload_type, c->sample_rate, c->channels,
  305. payload_type, config);
  306. break;
  307. case CODEC_ID_PCM_S16BE:
  308. if (payload_type >= RTP_PT_PRIVATE)
  309. av_strlcatf(buff, size, "a=rtpmap:%d L16/%d/%d\r\n",
  310. payload_type,
  311. c->sample_rate, c->channels);
  312. break;
  313. case CODEC_ID_PCM_MULAW:
  314. if (payload_type >= RTP_PT_PRIVATE)
  315. av_strlcatf(buff, size, "a=rtpmap:%d PCMU/%d/%d\r\n",
  316. payload_type,
  317. c->sample_rate, c->channels);
  318. break;
  319. case CODEC_ID_PCM_ALAW:
  320. if (payload_type >= RTP_PT_PRIVATE)
  321. av_strlcatf(buff, size, "a=rtpmap:%d PCMA/%d/%d\r\n",
  322. payload_type,
  323. c->sample_rate, c->channels);
  324. break;
  325. case CODEC_ID_AMR_NB:
  326. av_strlcatf(buff, size, "a=rtpmap:%d AMR/%d/%d\r\n"
  327. "a=fmtp:%d octet-align=1\r\n",
  328. payload_type, c->sample_rate, c->channels,
  329. payload_type);
  330. break;
  331. case CODEC_ID_AMR_WB:
  332. av_strlcatf(buff, size, "a=rtpmap:%d AMR-WB/%d/%d\r\n"
  333. "a=fmtp:%d octet-align=1\r\n",
  334. payload_type, c->sample_rate, c->channels,
  335. payload_type);
  336. break;
  337. case CODEC_ID_VORBIS:
  338. if (c->extradata_size)
  339. config = xiph_extradata2config(c);
  340. else
  341. av_log(c, AV_LOG_ERROR, "Vorbis configuration info missing\n");
  342. if (!config)
  343. return NULL;
  344. av_strlcatf(buff, size, "a=rtpmap:%d vorbis/%d/%d\r\n"
  345. "a=fmtp:%d configuration=%s\r\n",
  346. payload_type, c->sample_rate, c->channels,
  347. payload_type, config);
  348. break;
  349. case CODEC_ID_THEORA: {
  350. const char *pix_fmt;
  351. if (c->extradata_size)
  352. config = xiph_extradata2config(c);
  353. else
  354. av_log(c, AV_LOG_ERROR, "Theora configuation info missing\n");
  355. if (!config)
  356. return NULL;
  357. switch (c->pix_fmt) {
  358. case PIX_FMT_YUV420P:
  359. pix_fmt = "YCbCr-4:2:0";
  360. break;
  361. case PIX_FMT_YUV422P:
  362. pix_fmt = "YCbCr-4:2:2";
  363. break;
  364. case PIX_FMT_YUV444P:
  365. pix_fmt = "YCbCr-4:4:4";
  366. break;
  367. default:
  368. av_log(c, AV_LOG_ERROR, "Unsupported pixel format.\n");
  369. return NULL;
  370. }
  371. av_strlcatf(buff, size, "a=rtpmap:%d theora/90000\r\n"
  372. "a=fmtp:%d delivery-method=inline; "
  373. "width=%d; height=%d; sampling=%s; "
  374. "configuration=%s\r\n",
  375. payload_type, payload_type,
  376. c->width, c->height, pix_fmt, config);
  377. break;
  378. }
  379. case CODEC_ID_VP8:
  380. av_strlcatf(buff, size, "a=rtpmap:%d VP8/90000\r\n",
  381. payload_type);
  382. break;
  383. case CODEC_ID_ADPCM_G722:
  384. if (payload_type >= RTP_PT_PRIVATE)
  385. av_strlcatf(buff, size, "a=rtpmap:%d G722/%d/%d\r\n",
  386. payload_type,
  387. 8000, c->channels);
  388. break;
  389. default:
  390. /* Nothing special to do here... */
  391. break;
  392. }
  393. av_free(config);
  394. return buff;
  395. }
  396. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  397. {
  398. const char *type;
  399. int payload_type;
  400. payload_type = ff_rtp_get_payload_type(c);
  401. if (payload_type < 0) {
  402. payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO);
  403. }
  404. switch (c->codec_type) {
  405. case AVMEDIA_TYPE_VIDEO : type = "video" ; break;
  406. case AVMEDIA_TYPE_AUDIO : type = "audio" ; break;
  407. case AVMEDIA_TYPE_SUBTITLE: type = "text" ; break;
  408. default : type = "application"; break;
  409. }
  410. av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
  411. sdp_write_address(buff, size, dest_addr, dest_type, ttl);
  412. if (c->bit_rate) {
  413. av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000);
  414. }
  415. sdp_write_media_attributes(buff, size, c, payload_type);
  416. }
  417. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  418. {
  419. AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0);
  420. struct sdp_session_level s;
  421. int i, j, port, ttl, is_multicast;
  422. char dst[32], dst_type[5];
  423. memset(buff, 0, size);
  424. memset(&s, 0, sizeof(struct sdp_session_level));
  425. s.user = "-";
  426. s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
  427. s.src_type = "IP4";
  428. s.name = title ? title->value : "No Name";
  429. port = 0;
  430. ttl = 0;
  431. if (n_files == 1) {
  432. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
  433. is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
  434. sizeof(dst_type));
  435. if (!is_multicast)
  436. ttl = 0;
  437. if (dst[0]) {
  438. s.dst_addr = dst;
  439. s.dst_type = dst_type;
  440. s.ttl = ttl;
  441. if (!strcmp(dst_type, "IP6")) {
  442. s.src_addr = "::1";
  443. s.src_type = "IP6";
  444. }
  445. }
  446. }
  447. sdp_write_header(buff, size, &s);
  448. dst[0] = 0;
  449. for (i = 0; i < n_files; i++) {
  450. if (n_files != 1) {
  451. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
  452. is_multicast = resolve_destination(dst, sizeof(dst), dst_type,
  453. sizeof(dst_type));
  454. if (!is_multicast)
  455. ttl = 0;
  456. }
  457. for (j = 0; j < ac[i]->nb_streams; j++) {
  458. ff_sdp_write_media(buff, size,
  459. ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
  460. dst_type, (port > 0) ? port + j * 2 : 0, ttl);
  461. if (port <= 0) {
  462. av_strlcatf(buff, size,
  463. "a=control:streamid=%d\r\n", i + j);
  464. }
  465. }
  466. }
  467. return 0;
  468. }
  469. #else
  470. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  471. {
  472. return AVERROR(ENOSYS);
  473. }
  474. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  475. {
  476. }
  477. #endif