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.

325 lines
10KB

  1. /*
  2. * MP3 muxer
  3. * Copyright (c) 2003 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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 "libavutil/dict.h"
  33. #include "libavutil/avassert.h"
  34. static int id3v1_set_string(AVFormatContext *s, const char *key,
  35. uint8_t *buf, int buf_size)
  36. {
  37. AVDictionaryEntry *tag;
  38. if ((tag = av_dict_get(s->metadata, key, NULL, 0)))
  39. av_strlcpy(buf, tag->value, buf_size);
  40. return !!tag;
  41. }
  42. static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
  43. {
  44. AVDictionaryEntry *tag;
  45. int i, count = 0;
  46. memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
  47. buf[0] = 'T';
  48. buf[1] = 'A';
  49. buf[2] = 'G';
  50. count += id3v1_set_string(s, "TIT2", buf + 3, 30); //title
  51. count += id3v1_set_string(s, "TPE1", buf + 33, 30); //author|artist
  52. count += id3v1_set_string(s, "TALB", buf + 63, 30); //album
  53. count += id3v1_set_string(s, "TDRL", buf + 93, 4); //date
  54. count += id3v1_set_string(s, "comment", buf + 97, 30);
  55. if ((tag = av_dict_get(s->metadata, "TRCK", NULL, 0))) { //track
  56. buf[125] = 0;
  57. buf[126] = atoi(tag->value);
  58. count++;
  59. }
  60. buf[127] = 0xFF; /* default to unknown genre */
  61. if ((tag = av_dict_get(s->metadata, "TCON", NULL, 0))) { //genre
  62. for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
  63. if (!av_strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
  64. buf[127] = i;
  65. count++;
  66. break;
  67. }
  68. }
  69. }
  70. return count;
  71. }
  72. typedef struct MP3Context {
  73. const AVClass *class;
  74. ID3v2EncContext id3;
  75. int id3v2_version;
  76. int write_id3v1;
  77. int64_t nb_frames_offset;
  78. /* index of the audio stream */
  79. int audio_stream_idx;
  80. /* number of attached pictures we still need to write */
  81. int pics_to_write;
  82. /* audio packets are queued here until we get all the attached pictures */
  83. AVPacketList *queue, *queue_end;
  84. } MP3Context;
  85. /* insert a dummy frame containing number of frames */
  86. static void mp3_write_xing(AVFormatContext *s)
  87. {
  88. MP3Context *mp3 = s->priv_data;
  89. AVCodecContext *codec = s->streams[mp3->audio_stream_idx]->codec;
  90. int bitrate_idx = 1; // 32 kbps
  91. int64_t xing_offset = (codec->channels == 2) ? 32 : 17;
  92. int32_t header;
  93. MPADecodeHeader mpah;
  94. int srate_idx, i, channels;
  95. if (!s->pb->seekable)
  96. return;
  97. for (i = 0; i < FF_ARRAY_ELEMS(avpriv_mpa_freq_tab); i++)
  98. if (avpriv_mpa_freq_tab[i] == codec->sample_rate) {
  99. srate_idx = i;
  100. break;
  101. }
  102. if (i == FF_ARRAY_ELEMS(avpriv_mpa_freq_tab)) {
  103. av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
  104. return;
  105. }
  106. switch (codec->channels) {
  107. case 1: channels = MPA_MONO; break;
  108. case 2: channels = MPA_STEREO; break;
  109. default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
  110. }
  111. /* dummy MPEG audio header */
  112. header = 0xff << 24; // sync
  113. header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
  114. header |= (bitrate_idx << 4 | srate_idx << 2) << 8;
  115. header |= channels << 6;
  116. avio_wb32(s->pb, header);
  117. avpriv_mpegaudio_decode_header(&mpah, header);
  118. ffio_fill(s->pb, 0, xing_offset);
  119. ffio_wfourcc(s->pb, "Xing");
  120. avio_wb32(s->pb, 0x1); // only number of frames
  121. mp3->nb_frames_offset = avio_tell(s->pb);
  122. avio_wb32(s->pb, 0);
  123. mpah.frame_size -= 4 + xing_offset + 4 + 4 + 4;
  124. ffio_fill(s->pb, 0, mpah.frame_size);
  125. }
  126. static int mp3_queue_flush(AVFormatContext *s)
  127. {
  128. MP3Context *mp3 = s->priv_data;
  129. AVPacketList *pktl;
  130. int ret = 0, write = 1;
  131. ff_id3v2_finish(&mp3->id3, s->pb);
  132. mp3_write_xing(s);
  133. while ((pktl = mp3->queue)) {
  134. if (write && (ret = ff_raw_write_packet(s, &pktl->pkt)) < 0)
  135. write = 0;
  136. av_free_packet(&pktl->pkt);
  137. mp3->queue = pktl->next;
  138. av_freep(&pktl);
  139. }
  140. mp3->queue_end = NULL;
  141. return ret;
  142. }
  143. static int mp3_write_trailer(struct AVFormatContext *s)
  144. {
  145. uint8_t buf[ID3v1_TAG_SIZE];
  146. MP3Context *mp3 = s->priv_data;
  147. if (mp3 && mp3->pics_to_write) {
  148. av_log(s, AV_LOG_WARNING, "No packets were sent for some of the "
  149. "attached pictures.\n");
  150. mp3_queue_flush(s);
  151. }
  152. /* write the id3v1 tag */
  153. if (mp3 && mp3->write_id3v1 && id3v1_create_tag(s, buf) > 0) {
  154. avio_write(s->pb, buf, ID3v1_TAG_SIZE);
  155. }
  156. /* write number of frames */
  157. if (mp3 && mp3->nb_frames_offset) {
  158. avio_seek(s->pb, mp3->nb_frames_offset, SEEK_SET);
  159. avio_wb32(s->pb, s->streams[mp3->audio_stream_idx]->nb_frames);
  160. avio_seek(s->pb, 0, SEEK_END);
  161. }
  162. avio_flush(s->pb);
  163. return 0;
  164. }
  165. #if CONFIG_MP2_MUXER
  166. AVOutputFormat ff_mp2_muxer = {
  167. .name = "mp2",
  168. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  169. .mime_type = "audio/x-mpeg",
  170. .extensions = "mp2,m2a",
  171. .audio_codec = CODEC_ID_MP2,
  172. .video_codec = CODEC_ID_NONE,
  173. .write_packet = ff_raw_write_packet,
  174. .write_trailer = mp3_write_trailer,
  175. };
  176. #endif
  177. #if CONFIG_MP3_MUXER
  178. static const AVOption options[] = {
  179. { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
  180. offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
  181. { "write_id3v1", "Enable ID3v1 writing. ID3v1 tags are written in UTF-8 which may not be supported by most software.",
  182. offsetof(MP3Context, write_id3v1), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
  183. { NULL },
  184. };
  185. static const AVClass mp3_muxer_class = {
  186. .class_name = "MP3 muxer",
  187. .item_name = av_default_item_name,
  188. .option = options,
  189. .version = LIBAVUTIL_VERSION_INT,
  190. };
  191. static int mp3_write_packet(AVFormatContext *s, AVPacket *pkt)
  192. {
  193. MP3Context *mp3 = s->priv_data;
  194. if (pkt->stream_index == mp3->audio_stream_idx) {
  195. if (mp3->pics_to_write) {
  196. /* buffer audio packets until we get all the pictures */
  197. AVPacketList *pktl = av_mallocz(sizeof(*pktl));
  198. if (!pktl)
  199. return AVERROR(ENOMEM);
  200. pktl->pkt = *pkt;
  201. pkt->destruct = NULL;
  202. if (mp3->queue_end)
  203. mp3->queue_end->next = pktl;
  204. else
  205. mp3->queue = pktl;
  206. mp3->queue_end = pktl;
  207. } else
  208. return ff_raw_write_packet(s, pkt);
  209. } else {
  210. int ret;
  211. /* warn only once for each stream */
  212. if (s->streams[pkt->stream_index]->nb_frames == 1) {
  213. av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"
  214. " ignoring.\n", pkt->stream_index);
  215. }
  216. if (!mp3->pics_to_write || s->streams[pkt->stream_index]->nb_frames >= 1)
  217. return 0;
  218. if ((ret = ff_id3v2_write_apic(s, &mp3->id3, pkt)) < 0)
  219. return ret;
  220. mp3->pics_to_write--;
  221. /* flush the buffered audio packets */
  222. if (!mp3->pics_to_write &&
  223. (ret = mp3_queue_flush(s)) < 0)
  224. return ret;
  225. }
  226. return 0;
  227. }
  228. /**
  229. * Write an ID3v2 header at beginning of stream
  230. */
  231. static int mp3_write_header(struct AVFormatContext *s)
  232. {
  233. MP3Context *mp3 = s->priv_data;
  234. int ret, i;
  235. /* check the streams -- we want exactly one audio and arbitrary number of
  236. * video (attached pictures) */
  237. mp3->audio_stream_idx = -1;
  238. for (i = 0; i < s->nb_streams; i++) {
  239. AVStream *st = s->streams[i];
  240. if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  241. if (mp3->audio_stream_idx >= 0 || st->codec->codec_id != CODEC_ID_MP3) {
  242. av_log(s, AV_LOG_ERROR, "Invalid audio stream. Exactly one MP3 "
  243. "audio stream is required.\n");
  244. return AVERROR(EINVAL);
  245. }
  246. mp3->audio_stream_idx = i;
  247. } else if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO) {
  248. av_log(s, AV_LOG_ERROR, "Only audio streams and pictures are allowed in MP3.\n");
  249. return AVERROR(EINVAL);
  250. }
  251. }
  252. if (mp3->audio_stream_idx < 0) {
  253. av_log(s, AV_LOG_ERROR, "No audio stream present.\n");
  254. return AVERROR(EINVAL);
  255. }
  256. mp3->pics_to_write = s->nb_streams - 1;
  257. ff_id3v2_start(&mp3->id3, s->pb, mp3->id3v2_version, ID3v2_DEFAULT_MAGIC);
  258. ret = ff_id3v2_write_metadata(s, &mp3->id3);
  259. if (ret < 0)
  260. return ret;
  261. if (!mp3->pics_to_write) {
  262. ff_id3v2_finish(&mp3->id3, s->pb);
  263. mp3_write_xing(s);
  264. }
  265. return 0;
  266. }
  267. AVOutputFormat ff_mp3_muxer = {
  268. .name = "mp3",
  269. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  270. .mime_type = "audio/x-mpeg",
  271. .extensions = "mp3",
  272. .priv_data_size = sizeof(MP3Context),
  273. .audio_codec = CODEC_ID_MP3,
  274. .video_codec = CODEC_ID_PNG,
  275. .write_header = mp3_write_header,
  276. .write_packet = mp3_write_packet,
  277. .write_trailer = mp3_write_trailer,
  278. .flags = AVFMT_NOTIMESTAMPS,
  279. .priv_class = &mp3_muxer_class,
  280. };
  281. #endif