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.

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