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.

323 lines
9.3KB

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