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.

460 lines
13KB

  1. /*
  2. * MP3 muxer
  3. * Copyright (c) 2003 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <strings.h>
  22. #include "avformat.h"
  23. #include "id3v1.h"
  24. #include "id3v2.h"
  25. #include "rawenc.h"
  26. #include "libavutil/avstring.h"
  27. #include "libavutil/intreadwrite.h"
  28. #include "libavutil/opt.h"
  29. #include "libavcodec/mpegaudio.h"
  30. #include "libavcodec/mpegaudiodata.h"
  31. #include "libavcodec/mpegaudiodecheader.h"
  32. #include "libavformat/avio_internal.h"
  33. static int id3v1_set_string(AVFormatContext *s, const char *key,
  34. uint8_t *buf, int buf_size)
  35. {
  36. AVMetadataTag *tag;
  37. if ((tag = av_metadata_get(s->metadata, key, NULL, 0)))
  38. av_strlcpy(buf, tag->value, buf_size);
  39. return !!tag;
  40. }
  41. static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
  42. {
  43. AVMetadataTag *tag;
  44. int i, count = 0;
  45. memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
  46. buf[0] = 'T';
  47. buf[1] = 'A';
  48. buf[2] = 'G';
  49. count += id3v1_set_string(s, "TIT2", buf + 3, 30); //title
  50. count += id3v1_set_string(s, "TPE1", buf + 33, 30); //author|artist
  51. count += id3v1_set_string(s, "TALB", buf + 63, 30); //album
  52. count += id3v1_set_string(s, "TDRL", buf + 93, 4); //date
  53. count += id3v1_set_string(s, "comment", buf + 97, 30);
  54. if ((tag = av_metadata_get(s->metadata, "TRCK", NULL, 0))) { //track
  55. buf[125] = 0;
  56. buf[126] = atoi(tag->value);
  57. count++;
  58. }
  59. buf[127] = 0xFF; /* default to unknown genre */
  60. if ((tag = av_metadata_get(s->metadata, "TCON", NULL, 0))) { //genre
  61. for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
  62. if (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
  63. buf[127] = i;
  64. count++;
  65. break;
  66. }
  67. }
  68. }
  69. return count;
  70. }
  71. /* simple formats */
  72. static void id3v2_put_size(AVFormatContext *s, int size)
  73. {
  74. avio_w8(s->pb, size >> 21 & 0x7f);
  75. avio_w8(s->pb, size >> 14 & 0x7f);
  76. avio_w8(s->pb, size >> 7 & 0x7f);
  77. avio_w8(s->pb, size & 0x7f);
  78. }
  79. static int string_is_ascii(const uint8_t *str)
  80. {
  81. while (*str && *str < 128) str++;
  82. return !*str;
  83. }
  84. /**
  85. * Write a text frame with one (normal frames) or two (TXXX frames) strings
  86. * according to encoding (only UTF-8 or UTF-16+BOM supported).
  87. * @return number of bytes written or a negative error code.
  88. */
  89. static int id3v2_put_ttag(AVFormatContext *s, const char *str1, const char *str2,
  90. uint32_t tag, enum ID3v2Encoding enc)
  91. {
  92. int len;
  93. uint8_t *pb;
  94. int (*put)(AVIOContext*, const char*);
  95. AVIOContext *dyn_buf;
  96. if (avio_open_dyn_buf(&dyn_buf) < 0)
  97. return AVERROR(ENOMEM);
  98. /* check if the strings are ASCII-only and use UTF16 only if
  99. * they're not */
  100. if (enc == ID3v2_ENCODING_UTF16BOM && string_is_ascii(str1) &&
  101. (!str2 || string_is_ascii(str2)))
  102. enc = ID3v2_ENCODING_ISO8859;
  103. avio_w8(dyn_buf, enc);
  104. if (enc == ID3v2_ENCODING_UTF16BOM) {
  105. avio_wl16(dyn_buf, 0xFEFF); /* BOM */
  106. put = avio_put_str16le;
  107. } else
  108. put = avio_put_str;
  109. put(dyn_buf, str1);
  110. if (str2)
  111. put(dyn_buf, str2);
  112. len = avio_close_dyn_buf(dyn_buf, &pb);
  113. avio_wb32(s->pb, tag);
  114. id3v2_put_size(s, len);
  115. avio_wb16(s->pb, 0);
  116. avio_write(s->pb, pb, len);
  117. av_freep(&pb);
  118. return len + ID3v2_HEADER_SIZE;
  119. }
  120. static int mp2_write_trailer(struct AVFormatContext *s)
  121. {
  122. uint8_t buf[ID3v1_TAG_SIZE];
  123. /* write the id3v1 tag */
  124. if (id3v1_create_tag(s, buf) > 0) {
  125. avio_write(s->pb, buf, ID3v1_TAG_SIZE);
  126. avio_flush(s->pb);
  127. }
  128. return 0;
  129. }
  130. #if CONFIG_MP2_MUXER
  131. AVOutputFormat ff_mp2_muxer = {
  132. "mp2",
  133. NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  134. "audio/x-mpeg",
  135. "mp2,m2a",
  136. 0,
  137. CODEC_ID_MP2,
  138. CODEC_ID_NONE,
  139. NULL,
  140. ff_raw_write_packet,
  141. mp2_write_trailer,
  142. };
  143. #endif
  144. #if CONFIG_MP3_MUXER
  145. #define VBR_NUM_BAGS 400
  146. #define VBR_TOC_SIZE 100
  147. typedef struct MP3Context {
  148. const AVClass *class;
  149. int id3v2_version;
  150. int64_t frames_offset;
  151. int32_t frames;
  152. int32_t size;
  153. uint32_t want;
  154. uint32_t seen;
  155. uint32_t pos;
  156. uint64_t bag[VBR_NUM_BAGS];
  157. } MP3Context;
  158. static const AVOption options[] = {
  159. { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
  160. offsetof(MP3Context, id3v2_version), FF_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
  161. { NULL },
  162. };
  163. static const AVClass mp3_muxer_class = {
  164. .class_name = "MP3 muxer",
  165. .item_name = av_default_item_name,
  166. .option = options,
  167. .version = LIBAVUTIL_VERSION_INT,
  168. };
  169. static int id3v2_check_write_tag(AVFormatContext *s, AVMetadataTag *t, const char table[][4],
  170. enum ID3v2Encoding enc)
  171. {
  172. uint32_t tag;
  173. int i;
  174. if (t->key[0] != 'T' || strlen(t->key) != 4)
  175. return -1;
  176. tag = AV_RB32(t->key);
  177. for (i = 0; *table[i]; i++)
  178. if (tag == AV_RB32(table[i]))
  179. return id3v2_put_ttag(s, t->value, NULL, tag, enc);
  180. return -1;
  181. }
  182. static const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  183. /*
  184. * Write an empty XING header and initialize respective data.
  185. */
  186. static int mp3_write_xing(AVFormatContext *s)
  187. {
  188. AVCodecContext *codec = s->streams[0]->codec;
  189. MP3Context *mp3 = s->priv_data;
  190. int bitrate_idx = 3;
  191. int64_t xing_offset;
  192. int32_t mask, header;
  193. MPADecodeHeader c;
  194. int srate_idx, i, channels;
  195. int needed;
  196. for (i = 0; i < FF_ARRAY_ELEMS(ff_mpa_freq_tab); i++)
  197. if (ff_mpa_freq_tab[i] == codec->sample_rate) {
  198. srate_idx = i;
  199. break;
  200. }
  201. if (i == FF_ARRAY_ELEMS(ff_mpa_freq_tab)) {
  202. av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
  203. return -1;
  204. }
  205. switch (codec->channels) {
  206. case 1: channels = MPA_MONO; break;
  207. case 2: channels = MPA_STEREO; break;
  208. default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return -1;
  209. }
  210. /* dummy MPEG audio header */
  211. header = 0xff << 24; // sync
  212. header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
  213. header |= (srate_idx << 2) << 8;
  214. header |= channels << 6;
  215. for (;;) {
  216. if (15 == bitrate_idx)
  217. return -1;
  218. mask = (bitrate_idx << 4) << 8;
  219. header |= mask;
  220. ff_mpegaudio_decode_header(&c, header);
  221. xing_offset=xing_offtbl[c.lsf == 1][c.nb_channels == 1];
  222. needed = 4 // header
  223. + xing_offset
  224. + 4 // xing tag
  225. + 4 // frames/size/toc flags
  226. + 4 // frames
  227. + 4 // size
  228. + VBR_TOC_SIZE; // toc
  229. if (needed <= c.frame_size)
  230. break;
  231. header &= ~mask;
  232. ++bitrate_idx;
  233. }
  234. avio_wb32(s->pb, header);
  235. ffio_fill(s->pb, 0, xing_offset);
  236. avio_wb32(s->pb, MKBETAG('X', 'i', 'n', 'g'));
  237. avio_wb32(s->pb, 0x01 | 0x02 | 0x04); // frames/size/toc
  238. mp3->frames_offset = avio_tell(s->pb);
  239. mp3->size = c.frame_size;
  240. mp3->want=1;
  241. mp3->seen=0;
  242. mp3->pos=0;
  243. avio_wb32(s->pb, 0); // frames
  244. avio_wb32(s->pb, 0); // size
  245. // toc
  246. for (i = 0; i < VBR_TOC_SIZE; ++i)
  247. avio_w8(s->pb, (uint8_t)(255 * i / VBR_TOC_SIZE));
  248. ffio_fill(s->pb, 0, c.frame_size - needed);
  249. avio_flush(s->pb);
  250. return 0;
  251. }
  252. /*
  253. * Add a frame to XING data.
  254. * Following lame's "VbrTag.c".
  255. */
  256. static void mp3_xing_add_frame(AVFormatContext *s, AVPacket *pkt)
  257. {
  258. MP3Context *mp3 = s->priv_data;
  259. int i;
  260. ++mp3->frames;
  261. mp3->size += pkt->size;
  262. if (mp3->want == ++mp3->seen) {
  263. mp3->bag[mp3->pos] = mp3->size;
  264. if (VBR_NUM_BAGS == ++mp3->pos) {
  265. /* shrink table to half size by throwing away each second bag. */
  266. for (i = 1; i < VBR_NUM_BAGS; i += 2)
  267. mp3->bag[i >> 1] = mp3->bag[i];
  268. /* double wanted amount per bag. */
  269. mp3->want <<= 1;
  270. /* adjust current position to half of table size. */
  271. mp3->pos >>= 1;
  272. }
  273. mp3->seen = 0;
  274. }
  275. }
  276. static void mp3_fix_xing(AVFormatContext *s)
  277. {
  278. MP3Context *mp3 = s->priv_data;
  279. int i;
  280. avio_flush(s->pb);
  281. avio_seek(s->pb, mp3->frames_offset, SEEK_SET);
  282. avio_wb32(s->pb, mp3->frames);
  283. avio_wb32(s->pb, mp3->size);
  284. avio_w8(s->pb, 0); // first toc entry has to be zero.
  285. for (i = 1; i < VBR_TOC_SIZE; ++i) {
  286. int j = i * mp3->pos / VBR_TOC_SIZE;
  287. int seek_point = 256LL * mp3->bag[j] / mp3->size;
  288. avio_w8(s->pb, FFMIN(seek_point, 255));
  289. }
  290. avio_flush(s->pb);
  291. avio_seek(s->pb, 0, SEEK_END);
  292. }
  293. /**
  294. * Write an ID3v2 header at beginning of stream
  295. */
  296. static int mp3_write_header(struct AVFormatContext *s)
  297. {
  298. MP3Context *mp3 = s->priv_data;
  299. AVMetadataTag *t = NULL;
  300. int totlen = 0, enc = mp3->id3v2_version == 3 ? ID3v2_ENCODING_UTF16BOM :
  301. ID3v2_ENCODING_UTF8;
  302. int64_t size_pos, cur_pos;
  303. avio_wb32(s->pb, MKBETAG('I', 'D', '3', mp3->id3v2_version));
  304. avio_w8(s->pb, 0);
  305. avio_w8(s->pb, 0); /* flags */
  306. /* reserve space for size */
  307. size_pos = avio_tell(s->pb);
  308. avio_wb32(s->pb, 0);
  309. ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL);
  310. if (mp3->id3v2_version == 4)
  311. ff_metadata_conv(&s->metadata, ff_id3v2_4_metadata_conv, NULL);
  312. while ((t = av_metadata_get(s->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
  313. int ret;
  314. if ((ret = id3v2_check_write_tag(s, t, ff_id3v2_tags, enc)) > 0) {
  315. totlen += ret;
  316. continue;
  317. }
  318. if ((ret = id3v2_check_write_tag(s, t, mp3->id3v2_version == 3 ?
  319. ff_id3v2_3_tags : ff_id3v2_4_tags, enc)) > 0) {
  320. totlen += ret;
  321. continue;
  322. }
  323. /* unknown tag, write as TXXX frame */
  324. if ((ret = id3v2_put_ttag(s, t->key, t->value, MKBETAG('T', 'X', 'X', 'X'), enc)) < 0)
  325. return ret;
  326. totlen += ret;
  327. }
  328. cur_pos = avio_tell(s->pb);
  329. avio_seek(s->pb, size_pos, SEEK_SET);
  330. id3v2_put_size(s, totlen);
  331. avio_seek(s->pb, cur_pos, SEEK_SET);
  332. if (s->pb->seekable)
  333. mp3_write_xing(s);
  334. return 0;
  335. }
  336. static int mp3_write_packet(AVFormatContext *s, AVPacket *pkt)
  337. {
  338. if (! pkt || ! pkt->data || pkt->size < 4)
  339. return ff_raw_write_packet(s, pkt);
  340. else {
  341. MP3Context *mp3 = s->priv_data;
  342. #ifdef FILTER_VBR_HEADERS
  343. MPADecodeHeader c;
  344. int base;
  345. ff_mpegaudio_decode_header(&c, AV_RB32(pkt->data));
  346. /* filter out XING and INFO headers. */
  347. base = 4 + xing_offtbl[c.lsf == 1][c.nb_channels == 1];
  348. if (base + 4 <= pkt->size) {
  349. uint32_t v = AV_RB32(pkt->data + base);
  350. if (MKBETAG('X','i','n','g') == v || MKBETAG('I','n','f','o') == v)
  351. return 0;
  352. }
  353. /* filter out VBRI headers. */
  354. base = 4 + 32;
  355. if (base + 4 <= pkt->size && MKBETAG('V','B','R','I') == AV_RB32(pkt->data + base))
  356. return 0;
  357. #endif
  358. if (mp3->frames_offset)
  359. mp3_xing_add_frame(s, pkt);
  360. return ff_raw_write_packet(s, pkt);
  361. }
  362. }
  363. static int mp3_write_trailer(AVFormatContext *s)
  364. {
  365. MP3Context *mp3 = s->priv_data;
  366. int ret=mp2_write_trailer(s);
  367. if (ret < 0)
  368. return ret;
  369. if (mp3->frames_offset)
  370. mp3_fix_xing(s);
  371. return 0;
  372. }
  373. AVOutputFormat ff_mp3_muxer = {
  374. "mp3",
  375. NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  376. "audio/x-mpeg",
  377. "mp3",
  378. sizeof(MP3Context),
  379. CODEC_ID_MP3,
  380. CODEC_ID_NONE,
  381. mp3_write_header,
  382. mp3_write_packet,
  383. mp3_write_trailer,
  384. AVFMT_NOTIMESTAMPS,
  385. .priv_class = &mp3_muxer_class,
  386. };
  387. #endif