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.

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