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.

521 lines
17KB

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