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.

522 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, char *type,
  99. int type_size)
  100. {
  101. }
  102. #endif
  103. static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url)
  104. {
  105. int port;
  106. const char *p;
  107. char proto[32];
  108. av_url_split(proto, sizeof(proto), NULL, 0, dest_addr, size, &port, NULL, 0, url);
  109. *ttl = 0;
  110. if (strcmp(proto, "rtp")) {
  111. /* The url isn't for the actual rtp sessions,
  112. * don't parse out anything else than the destination.
  113. */
  114. return 0;
  115. }
  116. p = strchr(url, '?');
  117. if (p) {
  118. char buff[64];
  119. int is_multicast = find_info_tag(buff, sizeof(buff), "multicast", p);
  120. if (is_multicast) {
  121. if (find_info_tag(buff, sizeof(buff), "ttl", p)) {
  122. *ttl = strtol(buff, NULL, 10);
  123. } else {
  124. *ttl = 5;
  125. }
  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. default:
  382. /* Nothing special to do here... */
  383. break;
  384. }
  385. av_free(config);
  386. return buff;
  387. }
  388. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, const char *dest_type, int port, int ttl)
  389. {
  390. const char *type;
  391. int payload_type;
  392. payload_type = ff_rtp_get_payload_type(c);
  393. if (payload_type < 0) {
  394. payload_type = RTP_PT_PRIVATE + (c->codec_type == AVMEDIA_TYPE_AUDIO);
  395. }
  396. switch (c->codec_type) {
  397. case AVMEDIA_TYPE_VIDEO : type = "video" ; break;
  398. case AVMEDIA_TYPE_AUDIO : type = "audio" ; break;
  399. case AVMEDIA_TYPE_SUBTITLE: type = "text" ; break;
  400. default : type = "application"; break;
  401. }
  402. av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
  403. sdp_write_address(buff, size, dest_addr, dest_type, ttl);
  404. if (c->bit_rate) {
  405. av_strlcatf(buff, size, "b=AS:%d\r\n", c->bit_rate / 1000);
  406. }
  407. sdp_write_media_attributes(buff, size, c, payload_type);
  408. }
  409. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  410. {
  411. AVMetadataTag *title = av_metadata_get(ac[0]->metadata, "title", NULL, 0);
  412. struct sdp_session_level s;
  413. int i, j, port, ttl;
  414. char dst[32], dst_type[5];
  415. memset(buff, 0, size);
  416. memset(&s, 0, sizeof(struct sdp_session_level));
  417. s.user = "-";
  418. s.src_addr = "127.0.0.1"; /* FIXME: Properly set this */
  419. s.src_type = "IP4";
  420. s.name = title ? title->value : "No Name";
  421. port = 0;
  422. ttl = 0;
  423. if (n_files == 1) {
  424. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[0]->filename);
  425. resolve_destination(dst, sizeof(dst), dst_type, sizeof(dst_type));
  426. if (dst[0]) {
  427. s.dst_addr = dst;
  428. s.dst_type = dst_type;
  429. s.ttl = ttl;
  430. if (!strcmp(dst_type, "IP6")) {
  431. s.src_addr = "::1";
  432. s.src_type = "IP6";
  433. }
  434. }
  435. }
  436. sdp_write_header(buff, size, &s);
  437. dst[0] = 0;
  438. for (i = 0; i < n_files; i++) {
  439. if (n_files != 1) {
  440. port = sdp_get_address(dst, sizeof(dst), &ttl, ac[i]->filename);
  441. resolve_destination(dst, sizeof(dst), dst_type, sizeof(dst_type));
  442. }
  443. for (j = 0; j < ac[i]->nb_streams; j++) {
  444. ff_sdp_write_media(buff, size,
  445. ac[i]->streams[j]->codec, dst[0] ? dst : NULL,
  446. dst_type, (port > 0) ? port + j * 2 : 0, ttl);
  447. if (port <= 0) {
  448. av_strlcatf(buff, size,
  449. "a=control:streamid=%d\r\n", i + j);
  450. }
  451. }
  452. }
  453. return 0;
  454. }
  455. #else
  456. int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size)
  457. {
  458. return AVERROR(ENOSYS);
  459. }
  460. void ff_sdp_write_media(char *buff, int size, AVCodecContext *c,
  461. const char *dest_addr, int port, int ttl)
  462. {
  463. }
  464. #endif