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.

219 lines
6.8KB

  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. static int id3v1_set_string(AVFormatContext *s, const char *key,
  34. uint8_t *buf, int buf_size)
  35. {
  36. AVDictionaryEntry *tag;
  37. if ((tag = av_dict_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. AVDictionaryEntry *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_dict_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_dict_get(s->metadata, "TCON", NULL, 0))) { //genre
  61. for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
  62. if (!av_strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
  63. buf[127] = i;
  64. count++;
  65. break;
  66. }
  67. }
  68. }
  69. return count;
  70. }
  71. typedef struct MP3Context {
  72. const AVClass *class;
  73. int id3v2_version;
  74. int write_id3v1;
  75. int64_t nb_frames_offset;
  76. } MP3Context;
  77. /* insert a dummy frame containing number of frames */
  78. static void mp3_write_xing(AVFormatContext *s)
  79. {
  80. MP3Context *mp3 = s->priv_data;
  81. AVCodecContext *codec = s->streams[0]->codec;
  82. int bitrate_idx = 1; // 32 kbps
  83. int64_t xing_offset = (codec->channels == 2) ? 32 : 17;
  84. int32_t header;
  85. MPADecodeHeader mpah;
  86. int srate_idx, i, channels;
  87. if (!s->pb->seekable)
  88. return;
  89. for (i = 0; i < FF_ARRAY_ELEMS(avpriv_mpa_freq_tab); i++)
  90. if (avpriv_mpa_freq_tab[i] == codec->sample_rate) {
  91. srate_idx = i;
  92. break;
  93. }
  94. if (i == FF_ARRAY_ELEMS(avpriv_mpa_freq_tab)) {
  95. av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
  96. return;
  97. }
  98. switch (codec->channels) {
  99. case 1: channels = MPA_MONO; break;
  100. case 2: channels = MPA_STEREO; break;
  101. default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
  102. }
  103. /* dummy MPEG audio header */
  104. header = 0xff << 24; // sync
  105. header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
  106. header |= (bitrate_idx << 4 | srate_idx << 2) << 8;
  107. header |= channels << 6;
  108. avio_wb32(s->pb, header);
  109. avpriv_mpegaudio_decode_header(&mpah, header);
  110. ffio_fill(s->pb, 0, xing_offset);
  111. ffio_wfourcc(s->pb, "Xing");
  112. avio_wb32(s->pb, 0x1); // only number of frames
  113. mp3->nb_frames_offset = avio_tell(s->pb);
  114. avio_wb32(s->pb, 0);
  115. mpah.frame_size -= 4 + xing_offset + 4 + 4 + 4;
  116. ffio_fill(s->pb, 0, mpah.frame_size);
  117. }
  118. static int mp3_write_trailer(struct AVFormatContext *s)
  119. {
  120. uint8_t buf[ID3v1_TAG_SIZE];
  121. MP3Context *mp3 = s->priv_data;
  122. /* write the id3v1 tag */
  123. if (mp3 && mp3->write_id3v1 && id3v1_create_tag(s, buf) > 0) {
  124. avio_write(s->pb, buf, ID3v1_TAG_SIZE);
  125. }
  126. /* write number of frames */
  127. if (mp3 && mp3->nb_frames_offset) {
  128. avio_seek(s->pb, mp3->nb_frames_offset, SEEK_SET);
  129. avio_wb32(s->pb, s->streams[0]->nb_frames);
  130. avio_seek(s->pb, 0, SEEK_END);
  131. }
  132. avio_flush(s->pb);
  133. return 0;
  134. }
  135. #if CONFIG_MP2_MUXER
  136. AVOutputFormat ff_mp2_muxer = {
  137. .name = "mp2",
  138. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  139. .mime_type = "audio/x-mpeg",
  140. .extensions = "mp2,m2a",
  141. .audio_codec = CODEC_ID_MP2,
  142. .video_codec = CODEC_ID_NONE,
  143. .write_packet = ff_raw_write_packet,
  144. .write_trailer = mp3_write_trailer,
  145. };
  146. #endif
  147. #if CONFIG_MP3_MUXER
  148. static const AVOption options[] = {
  149. { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
  150. offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
  151. { "write_id3v1", "Enable ID3v1 writing. ID3v1 tags are written in UTF-8 which may not be supported by most software.",
  152. offsetof(MP3Context, write_id3v1), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
  153. { NULL },
  154. };
  155. static const AVClass mp3_muxer_class = {
  156. .class_name = "MP3 muxer",
  157. .item_name = av_default_item_name,
  158. .option = options,
  159. .version = LIBAVUTIL_VERSION_INT,
  160. };
  161. /**
  162. * Write an ID3v2 header at beginning of stream
  163. */
  164. static int mp3_write_header(struct AVFormatContext *s)
  165. {
  166. MP3Context *mp3 = s->priv_data;
  167. int ret;
  168. ret = ff_id3v2_write_simple(s, mp3->id3v2_version, ID3v2_DEFAULT_MAGIC);
  169. if (ret < 0)
  170. return ret;
  171. if (s->pb->seekable)
  172. mp3_write_xing(s);
  173. return 0;
  174. }
  175. AVOutputFormat ff_mp3_muxer = {
  176. .name = "mp3",
  177. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  178. .mime_type = "audio/x-mpeg",
  179. .extensions = "mp3",
  180. .priv_data_size = sizeof(MP3Context),
  181. .audio_codec = CODEC_ID_MP3,
  182. .video_codec = CODEC_ID_NONE,
  183. .write_header = mp3_write_header,
  184. .write_packet = ff_raw_write_packet,
  185. .write_trailer = mp3_write_trailer,
  186. .flags = AVFMT_NOTIMESTAMPS,
  187. .priv_class = &mp3_muxer_class,
  188. };
  189. #endif