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.

491 lines
15KB

  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 "avformat.h"
  22. #include "avio_internal.h"
  23. #include "id3v1.h"
  24. #include "id3v2.h"
  25. #include "rawenc.h"
  26. #include "libavutil/avstring.h"
  27. #include "libavcodec/mpegaudio.h"
  28. #include "libavcodec/mpegaudiodata.h"
  29. #include "libavcodec/mpegaudiodecheader.h"
  30. #include "libavutil/intreadwrite.h"
  31. #include "libavutil/opt.h"
  32. #include "libavcodec/mpegaudio.h"
  33. #include "libavcodec/mpegaudiodata.h"
  34. #include "libavcodec/mpegaudiodecheader.h"
  35. #include "libavformat/avio_internal.h"
  36. #include "libavutil/dict.h"
  37. #include "libavutil/avassert.h"
  38. static int id3v1_set_string(AVFormatContext *s, const char *key,
  39. uint8_t *buf, int buf_size)
  40. {
  41. AVDictionaryEntry *tag;
  42. if ((tag = av_dict_get(s->metadata, key, NULL, 0)))
  43. av_strlcpy(buf, tag->value, buf_size);
  44. return !!tag;
  45. }
  46. static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
  47. {
  48. AVDictionaryEntry *tag;
  49. int i, count = 0;
  50. memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
  51. buf[0] = 'T';
  52. buf[1] = 'A';
  53. buf[2] = 'G';
  54. /* we knowingly overspecify each tag length by one byte to compensate for the mandatory null byte added by av_strlcpy */
  55. count += id3v1_set_string(s, "TIT2", buf + 3, 30 + 1); //title
  56. count += id3v1_set_string(s, "TPE1", buf + 33, 30 + 1); //author|artist
  57. count += id3v1_set_string(s, "TALB", buf + 63, 30 + 1); //album
  58. count += id3v1_set_string(s, "TDRL", buf + 93, 4 + 1); //date
  59. count += id3v1_set_string(s, "comment", buf + 97, 30 + 1);
  60. if ((tag = av_dict_get(s->metadata, "TRCK", NULL, 0))) { //track
  61. buf[125] = 0;
  62. buf[126] = atoi(tag->value);
  63. count++;
  64. }
  65. buf[127] = 0xFF; /* default to unknown genre */
  66. if ((tag = av_dict_get(s->metadata, "TCON", NULL, 0))) { //genre
  67. for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
  68. if (!av_strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
  69. buf[127] = i;
  70. count++;
  71. break;
  72. }
  73. }
  74. }
  75. return count;
  76. }
  77. #define VBR_NUM_BAGS 400
  78. #define VBR_TOC_SIZE 100
  79. typedef struct MP3Context {
  80. const AVClass *class;
  81. ID3v2EncContext id3;
  82. int id3v2_version;
  83. int write_id3v1;
  84. int64_t frames_offset;
  85. int32_t frames;
  86. int32_t size;
  87. uint32_t want;
  88. uint32_t seen;
  89. uint32_t pos;
  90. uint64_t bag[VBR_NUM_BAGS];
  91. /* index of the audio stream */
  92. int audio_stream_idx;
  93. /* number of attached pictures we still need to write */
  94. int pics_to_write;
  95. /* audio packets are queued here until we get all the attached pictures */
  96. AVPacketList *queue, *queue_end;
  97. } MP3Context;
  98. static const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  99. /*
  100. * Write an empty XING header and initialize respective data.
  101. */
  102. static int mp3_write_xing(AVFormatContext *s)
  103. {
  104. MP3Context *mp3 = s->priv_data;
  105. AVCodecContext *codec = s->streams[mp3->audio_stream_idx]->codec;
  106. int bitrate_idx;
  107. int best_bitrate_idx = -1;
  108. int best_bitrate_error= INT_MAX;
  109. int64_t xing_offset;
  110. int32_t header, mask;
  111. MPADecodeHeader c;
  112. int srate_idx, i, channels;
  113. int needed;
  114. if (!s->pb->seekable)
  115. return 0;
  116. for (i = 0; i < FF_ARRAY_ELEMS(avpriv_mpa_freq_tab); i++)
  117. if (avpriv_mpa_freq_tab[i] == codec->sample_rate) {
  118. srate_idx = i;
  119. break;
  120. }
  121. if (i == FF_ARRAY_ELEMS(avpriv_mpa_freq_tab)) {
  122. av_log(s, AV_LOG_WARNING, "Unsupported sample rate, not writing Xing header.\n");
  123. return -1;
  124. }
  125. switch (codec->channels) {
  126. case 1: channels = MPA_MONO; break;
  127. case 2: channels = MPA_STEREO; break;
  128. default: av_log(s, AV_LOG_WARNING, "Unsupported number of channels, not writing Xing header.\n"); return -1;
  129. }
  130. /* dummy MPEG audio header */
  131. header = 0xff << 24; // sync
  132. header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
  133. header |= (srate_idx << 2) << 8;
  134. header |= channels << 6;
  135. for (bitrate_idx=1; bitrate_idx<15; bitrate_idx++) {
  136. int error;
  137. avpriv_mpegaudio_decode_header(&c, header | (bitrate_idx << (4+8)));
  138. error= FFABS(c.bit_rate - codec->bit_rate);
  139. if(error < best_bitrate_error){
  140. best_bitrate_error= error;
  141. best_bitrate_idx = bitrate_idx;
  142. }
  143. }
  144. av_assert0(best_bitrate_idx >= 0);
  145. for (bitrate_idx= best_bitrate_idx;; bitrate_idx++) {
  146. if (15 == bitrate_idx)
  147. return -1;
  148. mask = bitrate_idx << (4+8);
  149. header |= mask;
  150. avpriv_mpegaudio_decode_header(&c, header);
  151. xing_offset=xing_offtbl[c.lsf == 1][c.nb_channels == 1];
  152. needed = 4 // header
  153. + xing_offset
  154. + 4 // xing tag
  155. + 4 // frames/size/toc flags
  156. + 4 // frames
  157. + 4 // size
  158. + VBR_TOC_SIZE; // toc
  159. if (needed <= c.frame_size)
  160. break;
  161. header &= ~mask;
  162. }
  163. avio_wb32(s->pb, header);
  164. ffio_fill(s->pb, 0, xing_offset);
  165. avio_wb32(s->pb, MKBETAG('X', 'i', 'n', 'g'));
  166. avio_wb32(s->pb, 0x01 | 0x02 | 0x04); // frames/size/toc
  167. mp3->frames_offset = avio_tell(s->pb);
  168. mp3->size = c.frame_size;
  169. mp3->want=1;
  170. mp3->seen=0;
  171. mp3->pos=0;
  172. avio_wb32(s->pb, 0); // frames
  173. avio_wb32(s->pb, 0); // size
  174. // toc
  175. for (i = 0; i < VBR_TOC_SIZE; ++i)
  176. avio_w8(s->pb, (uint8_t)(255 * i / VBR_TOC_SIZE));
  177. ffio_fill(s->pb, 0, c.frame_size - needed);
  178. avio_flush(s->pb);
  179. return 0;
  180. }
  181. /*
  182. * Add a frame to XING data.
  183. * Following lame's "VbrTag.c".
  184. */
  185. static void mp3_xing_add_frame(AVFormatContext *s, AVPacket *pkt)
  186. {
  187. MP3Context *mp3 = s->priv_data;
  188. int i;
  189. ++mp3->frames;
  190. mp3->size += pkt->size;
  191. if (mp3->want == ++mp3->seen) {
  192. mp3->bag[mp3->pos] = mp3->size;
  193. if (VBR_NUM_BAGS == ++mp3->pos) {
  194. /* shrink table to half size by throwing away each second bag. */
  195. for (i = 1; i < VBR_NUM_BAGS; i += 2)
  196. mp3->bag[i >> 1] = mp3->bag[i];
  197. /* double wanted amount per bag. */
  198. mp3->want <<= 1;
  199. /* adjust current position to half of table size. */
  200. mp3->pos >>= 1;
  201. }
  202. mp3->seen = 0;
  203. }
  204. }
  205. static void mp3_fix_xing(AVFormatContext *s)
  206. {
  207. MP3Context *mp3 = s->priv_data;
  208. int i;
  209. avio_flush(s->pb);
  210. avio_seek(s->pb, mp3->frames_offset, SEEK_SET);
  211. avio_wb32(s->pb, mp3->frames);
  212. avio_wb32(s->pb, mp3->size);
  213. avio_w8(s->pb, 0); // first toc entry has to be zero.
  214. for (i = 1; i < VBR_TOC_SIZE; ++i) {
  215. int j = i * mp3->pos / VBR_TOC_SIZE;
  216. int seek_point = 256LL * mp3->bag[j] / mp3->size;
  217. avio_w8(s->pb, FFMIN(seek_point, 255));
  218. }
  219. avio_flush(s->pb);
  220. avio_seek(s->pb, 0, SEEK_END);
  221. }
  222. static int mp3_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
  223. {
  224. if (! pkt || ! pkt->data || pkt->size < 4)
  225. return ff_raw_write_packet(s, pkt);
  226. else {
  227. MP3Context *mp3 = s->priv_data;
  228. #ifdef FILTER_VBR_HEADERS
  229. MPADecodeHeader c;
  230. int base;
  231. ff_mpegaudio_decode_header(&c, AV_RB32(pkt->data));
  232. /* filter out XING and INFO headers. */
  233. base = 4 + xing_offtbl[c.lsf == 1][c.nb_channels == 1];
  234. if (base + 4 <= pkt->size) {
  235. uint32_t v = AV_RB32(pkt->data + base);
  236. if (MKBETAG('X','i','n','g') == v || MKBETAG('I','n','f','o') == v)
  237. return 0;
  238. }
  239. /* filter out VBRI headers. */
  240. base = 4 + 32;
  241. if (base + 4 <= pkt->size && MKBETAG('V','B','R','I') == AV_RB32(pkt->data + base))
  242. return 0;
  243. #endif
  244. if (mp3->frames_offset)
  245. mp3_xing_add_frame(s, pkt);
  246. return ff_raw_write_packet(s, pkt);
  247. }
  248. }
  249. static int mp3_queue_flush(AVFormatContext *s)
  250. {
  251. MP3Context *mp3 = s->priv_data;
  252. AVPacketList *pktl;
  253. int ret = 0, write = 1;
  254. ff_id3v2_finish(&mp3->id3, s->pb);
  255. mp3_write_xing(s);
  256. while ((pktl = mp3->queue)) {
  257. if (write && (ret = mp3_write_packet_internal(s, &pktl->pkt)) < 0)
  258. write = 0;
  259. av_free_packet(&pktl->pkt);
  260. mp3->queue = pktl->next;
  261. av_freep(&pktl);
  262. }
  263. mp3->queue_end = NULL;
  264. return ret;
  265. }
  266. static int mp2_write_trailer(struct AVFormatContext *s)
  267. {
  268. uint8_t buf[ID3v1_TAG_SIZE];
  269. MP3Context *mp3 = s->priv_data;
  270. if (mp3 && mp3->pics_to_write) {
  271. av_log(s, AV_LOG_WARNING, "No packets were sent for some of the "
  272. "attached pictures.\n");
  273. mp3_queue_flush(s);
  274. }
  275. /* write the id3v1 tag */
  276. if (mp3 && mp3->write_id3v1 && id3v1_create_tag(s, buf) > 0) {
  277. avio_write(s->pb, buf, ID3v1_TAG_SIZE);
  278. }
  279. /* write number of frames */
  280. if (mp3 && mp3->frames_offset) {
  281. avio_seek(s->pb, mp3->frames_offset, SEEK_SET);
  282. avio_wb32(s->pb, s->streams[mp3->audio_stream_idx]->nb_frames);
  283. avio_seek(s->pb, 0, SEEK_END);
  284. }
  285. avio_flush(s->pb);
  286. return 0;
  287. }
  288. #if CONFIG_MP2_MUXER
  289. AVOutputFormat ff_mp2_muxer = {
  290. .name = "mp2",
  291. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  292. .mime_type = "audio/x-mpeg",
  293. .extensions = "mp2,m2a",
  294. .audio_codec = CODEC_ID_MP2,
  295. .video_codec = CODEC_ID_NONE,
  296. .write_packet = ff_raw_write_packet,
  297. .write_trailer = mp2_write_trailer,
  298. .flags = AVFMT_NOTIMESTAMPS,
  299. };
  300. #endif
  301. #if CONFIG_MP3_MUXER
  302. static const AVOption options[] = {
  303. { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
  304. offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
  305. { "write_id3v1", "Enable ID3v1 writing. ID3v1 tags are written in UTF-8 which may not be supported by most software.",
  306. offsetof(MP3Context, write_id3v1), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
  307. { NULL },
  308. };
  309. static const AVClass mp3_muxer_class = {
  310. .class_name = "MP3 muxer",
  311. .item_name = av_default_item_name,
  312. .option = options,
  313. .version = LIBAVUTIL_VERSION_INT,
  314. };
  315. static int mp3_write_packet(AVFormatContext *s, AVPacket *pkt)
  316. {
  317. MP3Context *mp3 = s->priv_data;
  318. if (pkt->stream_index == mp3->audio_stream_idx) {
  319. if (mp3->pics_to_write) {
  320. /* buffer audio packets until we get all the pictures */
  321. AVPacketList *pktl = av_mallocz(sizeof(*pktl));
  322. if (!pktl)
  323. return AVERROR(ENOMEM);
  324. pktl->pkt = *pkt;
  325. pkt->destruct = NULL;
  326. if (mp3->queue_end)
  327. mp3->queue_end->next = pktl;
  328. else
  329. mp3->queue = pktl;
  330. mp3->queue_end = pktl;
  331. } else
  332. return mp3_write_packet_internal(s, pkt);
  333. } else {
  334. int ret;
  335. /* warn only once for each stream */
  336. if (s->streams[pkt->stream_index]->nb_frames == 1) {
  337. av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"
  338. " ignoring.\n", pkt->stream_index);
  339. }
  340. if (!mp3->pics_to_write || s->streams[pkt->stream_index]->nb_frames >= 1)
  341. return 0;
  342. if ((ret = ff_id3v2_write_apic(s, &mp3->id3, pkt)) < 0)
  343. return ret;
  344. mp3->pics_to_write--;
  345. /* flush the buffered audio packets */
  346. if (!mp3->pics_to_write &&
  347. (ret = mp3_queue_flush(s)) < 0)
  348. return ret;
  349. }
  350. return 0;
  351. }
  352. /**
  353. * Write an ID3v2 header at beginning of stream
  354. */
  355. static int mp3_write_header(struct AVFormatContext *s)
  356. {
  357. MP3Context *mp3 = s->priv_data;
  358. int ret, i;
  359. /* check the streams -- we want exactly one audio and arbitrary number of
  360. * video (attached pictures) */
  361. mp3->audio_stream_idx = -1;
  362. for (i = 0; i < s->nb_streams; i++) {
  363. AVStream *st = s->streams[i];
  364. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  365. if (mp3->audio_stream_idx >= 0 || st->codec->codec_id != CODEC_ID_MP3) {
  366. av_log(s, AV_LOG_ERROR, "Invalid audio stream. Exactly one MP3 "
  367. "audio stream is required.\n");
  368. return AVERROR(EINVAL);
  369. }
  370. mp3->audio_stream_idx = i;
  371. } else if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO) {
  372. av_log(s, AV_LOG_ERROR, "Only audio streams and pictures are allowed in MP3.\n");
  373. return AVERROR(EINVAL);
  374. }
  375. }
  376. if (mp3->audio_stream_idx < 0) {
  377. av_log(s, AV_LOG_ERROR, "No audio stream present.\n");
  378. return AVERROR(EINVAL);
  379. }
  380. mp3->pics_to_write = s->nb_streams - 1;
  381. ff_id3v2_start(&mp3->id3, s->pb, mp3->id3v2_version, ID3v2_DEFAULT_MAGIC);
  382. ret = ff_id3v2_write_metadata(s, &mp3->id3);
  383. if (ret < 0)
  384. return ret;
  385. if (!mp3->pics_to_write) {
  386. ff_id3v2_finish(&mp3->id3, s->pb);
  387. mp3_write_xing(s);
  388. }
  389. return 0;
  390. }
  391. static int mp3_write_trailer(AVFormatContext *s)
  392. {
  393. MP3Context *mp3 = s->priv_data;
  394. int ret=mp2_write_trailer(s);
  395. if (ret < 0)
  396. return ret;
  397. if (mp3->frames_offset)
  398. mp3_fix_xing(s);
  399. return 0;
  400. }
  401. AVOutputFormat ff_mp3_muxer = {
  402. .name = "mp3",
  403. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  404. .mime_type = "audio/x-mpeg",
  405. .extensions = "mp3",
  406. .priv_data_size = sizeof(MP3Context),
  407. .audio_codec = CODEC_ID_MP3,
  408. .video_codec = CODEC_ID_PNG,
  409. .write_header = mp3_write_header,
  410. .write_packet = mp3_write_packet,
  411. .write_trailer = mp3_write_trailer,
  412. .flags = AVFMT_NOTIMESTAMPS,
  413. .priv_class = &mp3_muxer_class,
  414. };
  415. #endif