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.

321 lines
9.7KB

  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. int64_t nb_frames_offset;
  125. } MP3Context;
  126. static int mp3_write_trailer(struct AVFormatContext *s)
  127. {
  128. uint8_t buf[ID3v1_TAG_SIZE];
  129. MP3Context *mp3 = s->priv_data;
  130. /* write the id3v1 tag */
  131. if (id3v1_create_tag(s, buf) > 0) {
  132. avio_write(s->pb, buf, ID3v1_TAG_SIZE);
  133. }
  134. /* write number of frames */
  135. if (mp3 && mp3->nb_frames_offset) {
  136. avio_seek(s->pb, mp3->nb_frames_offset, SEEK_SET);
  137. avio_wb32(s->pb, s->streams[0]->nb_frames);
  138. avio_seek(s->pb, 0, SEEK_END);
  139. }
  140. avio_flush(s->pb);
  141. return 0;
  142. }
  143. #if CONFIG_MP2_MUXER
  144. AVOutputFormat ff_mp2_muxer = {
  145. .name = "mp2",
  146. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  147. .mime_type = "audio/x-mpeg",
  148. .extensions = "mp2,m2a",
  149. .audio_codec = CODEC_ID_MP2,
  150. .video_codec = CODEC_ID_NONE,
  151. .write_packet = ff_raw_write_packet,
  152. .write_trailer = mp3_write_trailer,
  153. };
  154. #endif
  155. #if CONFIG_MP3_MUXER
  156. static const AVOption options[] = {
  157. { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
  158. offsetof(MP3Context, id3v2_version), FF_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
  159. { NULL },
  160. };
  161. static const AVClass mp3_muxer_class = {
  162. .class_name = "MP3 muxer",
  163. .item_name = av_default_item_name,
  164. .option = options,
  165. .version = LIBAVUTIL_VERSION_INT,
  166. };
  167. static int id3v2_check_write_tag(AVFormatContext *s, AVDictionaryEntry *t, const char table[][4],
  168. enum ID3v2Encoding enc)
  169. {
  170. uint32_t tag;
  171. int i;
  172. if (t->key[0] != 'T' || strlen(t->key) != 4)
  173. return -1;
  174. tag = AV_RB32(t->key);
  175. for (i = 0; *table[i]; i++)
  176. if (tag == AV_RB32(table[i]))
  177. return id3v2_put_ttag(s, t->value, NULL, tag, enc);
  178. return -1;
  179. }
  180. /* insert a dummy frame containing number of frames */
  181. static void mp3_write_xing(AVFormatContext *s)
  182. {
  183. AVCodecContext *codec = s->streams[0]->codec;
  184. MP3Context *mp3 = s->priv_data;
  185. int bitrate_idx = 1; // 32 kbps
  186. int64_t xing_offset = (codec->channels == 2) ? 32 : 17;
  187. int32_t header;
  188. MPADecodeHeader mpah;
  189. int srate_idx, i, channels;
  190. for (i = 0; i < FF_ARRAY_ELEMS(ff_mpa_freq_tab); i++)
  191. if (ff_mpa_freq_tab[i] == codec->sample_rate) {
  192. srate_idx = i;
  193. break;
  194. }
  195. if (i == FF_ARRAY_ELEMS(ff_mpa_freq_tab)) {
  196. av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
  197. return;
  198. }
  199. switch (codec->channels) {
  200. case 1: channels = MPA_MONO; break;
  201. case 2: channels = MPA_STEREO; break;
  202. default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
  203. }
  204. /* dummy MPEG audio header */
  205. header = 0xff << 24; // sync
  206. header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
  207. header |= (bitrate_idx << 4 | srate_idx << 2) << 8;
  208. header |= channels << 6;
  209. avio_wb32(s->pb, header);
  210. ff_mpegaudio_decode_header(&mpah, header);
  211. ffio_fill(s->pb, 0, xing_offset);
  212. ffio_wfourcc(s->pb, "Xing");
  213. avio_wb32(s->pb, 0x1); // only number of frames
  214. mp3->nb_frames_offset = avio_tell(s->pb);
  215. avio_wb32(s->pb, 0);
  216. mpah.frame_size -= 4 + xing_offset + 4 + 4 + 4;
  217. ffio_fill(s->pb, 0, mpah.frame_size);
  218. }
  219. /**
  220. * Write an ID3v2 header at beginning of stream
  221. */
  222. static int mp3_write_header(struct AVFormatContext *s)
  223. {
  224. MP3Context *mp3 = s->priv_data;
  225. AVDictionaryEntry *t = NULL;
  226. int totlen = 0, enc = mp3->id3v2_version == 3 ? ID3v2_ENCODING_UTF16BOM :
  227. ID3v2_ENCODING_UTF8;
  228. int64_t size_pos, cur_pos;
  229. avio_wb32(s->pb, MKBETAG('I', 'D', '3', mp3->id3v2_version));
  230. avio_w8(s->pb, 0);
  231. avio_w8(s->pb, 0); /* flags */
  232. /* reserve space for size */
  233. size_pos = avio_tell(s->pb);
  234. avio_wb32(s->pb, 0);
  235. ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL);
  236. if (mp3->id3v2_version == 4)
  237. ff_metadata_conv(&s->metadata, ff_id3v2_4_metadata_conv, NULL);
  238. while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX))) {
  239. int ret;
  240. if ((ret = id3v2_check_write_tag(s, t, ff_id3v2_tags, enc)) > 0) {
  241. totlen += ret;
  242. continue;
  243. }
  244. if ((ret = id3v2_check_write_tag(s, t, mp3->id3v2_version == 3 ?
  245. ff_id3v2_3_tags : ff_id3v2_4_tags, enc)) > 0) {
  246. totlen += ret;
  247. continue;
  248. }
  249. /* unknown tag, write as TXXX frame */
  250. if ((ret = id3v2_put_ttag(s, t->key, t->value, MKBETAG('T', 'X', 'X', 'X'), enc)) < 0)
  251. return ret;
  252. totlen += ret;
  253. }
  254. cur_pos = avio_tell(s->pb);
  255. avio_seek(s->pb, size_pos, SEEK_SET);
  256. id3v2_put_size(s, totlen);
  257. avio_seek(s->pb, cur_pos, SEEK_SET);
  258. if (s->pb->seekable)
  259. mp3_write_xing(s);
  260. return 0;
  261. }
  262. AVOutputFormat ff_mp3_muxer = {
  263. .name = "mp3",
  264. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  265. .mime_type = "audio/x-mpeg",
  266. .extensions = "mp3",
  267. .priv_data_size = sizeof(MP3Context),
  268. .audio_codec = CODEC_ID_MP3,
  269. .video_codec = CODEC_ID_NONE,
  270. .write_header = mp3_write_header,
  271. .write_packet = ff_raw_write_packet,
  272. .write_trailer = mp3_write_trailer,
  273. .flags = AVFMT_NOTIMESTAMPS,
  274. .priv_class = &mp3_muxer_class,
  275. };
  276. #endif