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.

324 lines
10.0KB

  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 <strings.h>
  22. #include "avformat.h"
  23. #include "avio_internal.h"
  24. #include "id3v1.h"
  25. #include "id3v2.h"
  26. #include "rawenc.h"
  27. #include "libavutil/avstring.h"
  28. #include "libavcodec/mpegaudio.h"
  29. #include "libavcodec/mpegaudiodata.h"
  30. #include "libavcodec/mpegaudiodecheader.h"
  31. #include "libavutil/intreadwrite.h"
  32. #include "libavutil/opt.h"
  33. #include "libavutil/dict.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 (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
  64. buf[127] = i;
  65. count++;
  66. break;
  67. }
  68. }
  69. }
  70. return count;
  71. }
  72. /* simple formats */
  73. static void id3v2_put_size(AVFormatContext *s, int size)
  74. {
  75. avio_w8(s->pb, size >> 21 & 0x7f);
  76. avio_w8(s->pb, size >> 14 & 0x7f);
  77. avio_w8(s->pb, size >> 7 & 0x7f);
  78. avio_w8(s->pb, size & 0x7f);
  79. }
  80. static int string_is_ascii(const uint8_t *str)
  81. {
  82. while (*str && *str < 128) str++;
  83. return !*str;
  84. }
  85. /**
  86. * Write a text frame with one (normal frames) or two (TXXX frames) strings
  87. * according to encoding (only UTF-8 or UTF-16+BOM supported).
  88. * @return number of bytes written or a negative error code.
  89. */
  90. static int id3v2_put_ttag(AVFormatContext *s, const char *str1, const char *str2,
  91. uint32_t tag, enum ID3v2Encoding enc)
  92. {
  93. int len;
  94. uint8_t *pb;
  95. int (*put)(AVIOContext*, const char*);
  96. AVIOContext *dyn_buf;
  97. if (avio_open_dyn_buf(&dyn_buf) < 0)
  98. return AVERROR(ENOMEM);
  99. /* check if the strings are ASCII-only and use UTF16 only if
  100. * they're not */
  101. if (enc == ID3v2_ENCODING_UTF16BOM && string_is_ascii(str1) &&
  102. (!str2 || string_is_ascii(str2)))
  103. enc = ID3v2_ENCODING_ISO8859;
  104. avio_w8(dyn_buf, enc);
  105. if (enc == ID3v2_ENCODING_UTF16BOM) {
  106. avio_wl16(dyn_buf, 0xFEFF); /* BOM */
  107. put = avio_put_str16le;
  108. } else
  109. put = avio_put_str;
  110. put(dyn_buf, str1);
  111. if (str2)
  112. put(dyn_buf, str2);
  113. len = avio_close_dyn_buf(dyn_buf, &pb);
  114. avio_wb32(s->pb, tag);
  115. id3v2_put_size(s, len);
  116. avio_wb16(s->pb, 0);
  117. avio_write(s->pb, pb, len);
  118. av_freep(&pb);
  119. return len + ID3v2_HEADER_SIZE;
  120. }
  121. typedef struct MP3Context {
  122. const AVClass *class;
  123. int id3v2_version;
  124. int write_id3v1;
  125. int64_t nb_frames_offset;
  126. } MP3Context;
  127. static int mp3_write_trailer(struct AVFormatContext *s)
  128. {
  129. uint8_t buf[ID3v1_TAG_SIZE];
  130. MP3Context *mp3 = s->priv_data;
  131. /* write the id3v1 tag */
  132. if (mp3 && mp3->write_id3v1 && id3v1_create_tag(s, buf) > 0) {
  133. avio_write(s->pb, buf, ID3v1_TAG_SIZE);
  134. }
  135. /* write number of frames */
  136. if (mp3 && mp3->nb_frames_offset) {
  137. avio_seek(s->pb, mp3->nb_frames_offset, SEEK_SET);
  138. avio_wb32(s->pb, s->streams[0]->nb_frames);
  139. avio_seek(s->pb, 0, SEEK_END);
  140. }
  141. avio_flush(s->pb);
  142. return 0;
  143. }
  144. #if CONFIG_MP2_MUXER
  145. AVOutputFormat ff_mp2_muxer = {
  146. .name = "mp2",
  147. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  148. .mime_type = "audio/x-mpeg",
  149. .extensions = "mp2,m2a",
  150. .audio_codec = CODEC_ID_MP2,
  151. .video_codec = CODEC_ID_NONE,
  152. .write_packet = ff_raw_write_packet,
  153. .write_trailer = mp3_write_trailer,
  154. };
  155. #endif
  156. #if CONFIG_MP3_MUXER
  157. static const AVOption options[] = {
  158. { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
  159. offsetof(MP3Context, id3v2_version), FF_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
  160. { "write_id3v1", "Enable ID3v1 writing. ID3v1 tags are written in UTF-8 which may not be supported by most software.",
  161. offsetof(MP3Context, write_id3v1), FF_OPT_TYPE_INT, {.dbl = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
  162. { NULL },
  163. };
  164. static const AVClass mp3_muxer_class = {
  165. .class_name = "MP3 muxer",
  166. .item_name = av_default_item_name,
  167. .option = options,
  168. .version = LIBAVUTIL_VERSION_INT,
  169. };
  170. static int id3v2_check_write_tag(AVFormatContext *s, AVDictionaryEntry *t, const char table[][4],
  171. enum ID3v2Encoding enc)
  172. {
  173. uint32_t tag;
  174. int i;
  175. if (t->key[0] != 'T' || strlen(t->key) != 4)
  176. return -1;
  177. tag = AV_RB32(t->key);
  178. for (i = 0; *table[i]; i++)
  179. if (tag == AV_RB32(table[i]))
  180. return id3v2_put_ttag(s, t->value, NULL, tag, enc);
  181. return -1;
  182. }
  183. /* insert a dummy frame containing number of frames */
  184. static void mp3_write_xing(AVFormatContext *s)
  185. {
  186. AVCodecContext *codec = s->streams[0]->codec;
  187. MP3Context *mp3 = s->priv_data;
  188. int bitrate_idx = 1; // 32 kbps
  189. int64_t xing_offset = (codec->channels == 2) ? 32 : 17;
  190. int32_t header;
  191. MPADecodeHeader mpah;
  192. int srate_idx, i, channels;
  193. for (i = 0; i < FF_ARRAY_ELEMS(ff_mpa_freq_tab); i++)
  194. if (ff_mpa_freq_tab[i] == codec->sample_rate) {
  195. srate_idx = i;
  196. break;
  197. }
  198. if (i == FF_ARRAY_ELEMS(ff_mpa_freq_tab)) {
  199. av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
  200. return;
  201. }
  202. switch (codec->channels) {
  203. case 1: channels = MPA_MONO; break;
  204. case 2: channels = MPA_STEREO; break;
  205. default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
  206. }
  207. /* dummy MPEG audio header */
  208. header = 0xff << 24; // sync
  209. header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
  210. header |= (bitrate_idx << 4 | srate_idx << 2) << 8;
  211. header |= channels << 6;
  212. avio_wb32(s->pb, header);
  213. ff_mpegaudio_decode_header(&mpah, header);
  214. ffio_fill(s->pb, 0, xing_offset);
  215. ffio_wfourcc(s->pb, "Xing");
  216. avio_wb32(s->pb, 0x1); // only number of frames
  217. mp3->nb_frames_offset = avio_tell(s->pb);
  218. avio_wb32(s->pb, 0);
  219. mpah.frame_size -= 4 + xing_offset + 4 + 4 + 4;
  220. ffio_fill(s->pb, 0, mpah.frame_size);
  221. }
  222. /**
  223. * Write an ID3v2 header at beginning of stream
  224. */
  225. static int mp3_write_header(struct AVFormatContext *s)
  226. {
  227. MP3Context *mp3 = s->priv_data;
  228. AVDictionaryEntry *t = NULL;
  229. int totlen = 0, enc = mp3->id3v2_version == 3 ? ID3v2_ENCODING_UTF16BOM :
  230. ID3v2_ENCODING_UTF8;
  231. int64_t size_pos, cur_pos;
  232. avio_wb32(s->pb, MKBETAG('I', 'D', '3', mp3->id3v2_version));
  233. avio_w8(s->pb, 0);
  234. avio_w8(s->pb, 0); /* flags */
  235. /* reserve space for size */
  236. size_pos = avio_tell(s->pb);
  237. avio_wb32(s->pb, 0);
  238. ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL);
  239. if (mp3->id3v2_version == 4)
  240. ff_metadata_conv(&s->metadata, ff_id3v2_4_metadata_conv, NULL);
  241. while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX))) {
  242. int ret;
  243. if ((ret = id3v2_check_write_tag(s, t, ff_id3v2_tags, enc)) > 0) {
  244. totlen += ret;
  245. continue;
  246. }
  247. if ((ret = id3v2_check_write_tag(s, t, mp3->id3v2_version == 3 ?
  248. ff_id3v2_3_tags : ff_id3v2_4_tags, enc)) > 0) {
  249. totlen += ret;
  250. continue;
  251. }
  252. /* unknown tag, write as TXXX frame */
  253. if ((ret = id3v2_put_ttag(s, t->key, t->value, MKBETAG('T', 'X', 'X', 'X'), enc)) < 0)
  254. return ret;
  255. totlen += ret;
  256. }
  257. cur_pos = avio_tell(s->pb);
  258. avio_seek(s->pb, size_pos, SEEK_SET);
  259. id3v2_put_size(s, totlen);
  260. avio_seek(s->pb, cur_pos, SEEK_SET);
  261. if (s->pb->seekable)
  262. mp3_write_xing(s);
  263. return 0;
  264. }
  265. AVOutputFormat ff_mp3_muxer = {
  266. .name = "mp3",
  267. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  268. .mime_type = "audio/x-mpeg",
  269. .extensions = "mp3",
  270. .priv_data_size = sizeof(MP3Context),
  271. .audio_codec = CODEC_ID_MP3,
  272. .video_codec = CODEC_ID_NONE,
  273. .write_header = mp3_write_header,
  274. .write_packet = ff_raw_write_packet,
  275. .write_trailer = mp3_write_trailer,
  276. .flags = AVFMT_NOTIMESTAMPS,
  277. .priv_class = &mp3_muxer_class,
  278. };
  279. #endif