]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3enc.c
doxygen: place empty line between brief description and detailed description
[ffmpeg] / libavformat / mp3enc.c
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
22 #include <strings.h>
23 #include "avformat.h"
24 #include "avio_internal.h"
25 #include "id3v1.h"
26 #include "id3v2.h"
27 #include "rawenc.h"
28 #include "libavutil/avstring.h"
29 #include "libavcodec/mpegaudio.h"
30 #include "libavcodec/mpegaudiodata.h"
31 #include "libavcodec/mpegaudiodecheader.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/dict.h"
35
36 static int id3v1_set_string(AVFormatContext *s, const char *key,
37                             uint8_t *buf, int buf_size)
38 {
39     AVDictionaryEntry *tag;
40     if ((tag = av_dict_get(s->metadata, key, NULL, 0)))
41         av_strlcpy(buf, tag->value, buf_size);
42     return !!tag;
43 }
44
45 static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
46 {
47     AVDictionaryEntry *tag;
48     int i, count = 0;
49
50     memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
51     buf[0] = 'T';
52     buf[1] = 'A';
53     buf[2] = 'G';
54     count += id3v1_set_string(s, "TIT2",    buf +  3, 30);       //title
55     count += id3v1_set_string(s, "TPE1",    buf + 33, 30);       //author|artist
56     count += id3v1_set_string(s, "TALB",    buf + 63, 30);       //album
57     count += id3v1_set_string(s, "TDRL",    buf + 93,  4);       //date
58     count += id3v1_set_string(s, "comment", buf + 97, 30);
59     if ((tag = av_dict_get(s->metadata, "TRCK", NULL, 0))) { //track
60         buf[125] = 0;
61         buf[126] = atoi(tag->value);
62         count++;
63     }
64     buf[127] = 0xFF; /* default to unknown genre */
65     if ((tag = av_dict_get(s->metadata, "TCON", NULL, 0))) { //genre
66         for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
67             if (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
68                 buf[127] = i;
69                 count++;
70                 break;
71             }
72         }
73     }
74     return count;
75 }
76
77 /* simple formats */
78
79 static void id3v2_put_size(AVFormatContext *s, int size)
80 {
81     avio_w8(s->pb, size >> 21 & 0x7f);
82     avio_w8(s->pb, size >> 14 & 0x7f);
83     avio_w8(s->pb, size >> 7  & 0x7f);
84     avio_w8(s->pb, size       & 0x7f);
85 }
86
87 static int string_is_ascii(const uint8_t *str)
88 {
89     while (*str && *str < 128) str++;
90     return !*str;
91 }
92
93 /**
94  * Write a text frame with one (normal frames) or two (TXXX frames) strings
95  * according to encoding (only UTF-8 or UTF-16+BOM supported).
96  * @return number of bytes written or a negative error code.
97  */
98 static int id3v2_put_ttag(AVFormatContext *s, const char *str1, const char *str2,
99                           uint32_t tag, enum ID3v2Encoding enc)
100 {
101     int len;
102     uint8_t *pb;
103     int (*put)(AVIOContext*, const char*);
104     AVIOContext *dyn_buf;
105     if (avio_open_dyn_buf(&dyn_buf) < 0)
106         return AVERROR(ENOMEM);
107
108     /* check if the strings are ASCII-only and use UTF16 only if
109      * they're not */
110     if (enc == ID3v2_ENCODING_UTF16BOM && string_is_ascii(str1) &&
111         (!str2 || string_is_ascii(str2)))
112         enc = ID3v2_ENCODING_ISO8859;
113
114     avio_w8(dyn_buf, enc);
115     if (enc == ID3v2_ENCODING_UTF16BOM) {
116         avio_wl16(dyn_buf, 0xFEFF);      /* BOM */
117         put = avio_put_str16le;
118     } else
119         put = avio_put_str;
120
121     put(dyn_buf, str1);
122     if (str2)
123         put(dyn_buf, str2);
124     len = avio_close_dyn_buf(dyn_buf, &pb);
125
126     avio_wb32(s->pb, tag);
127     id3v2_put_size(s, len);
128     avio_wb16(s->pb, 0);
129     avio_write(s->pb, pb, len);
130
131     av_freep(&pb);
132     return len + ID3v2_HEADER_SIZE;
133 }
134
135 typedef struct MP3Context {
136     const AVClass *class;
137     int id3v2_version;
138     int64_t nb_frames_offset;
139 } MP3Context;
140
141 static int mp3_write_trailer(struct AVFormatContext *s)
142 {
143     uint8_t buf[ID3v1_TAG_SIZE];
144     MP3Context *mp3 = s->priv_data;
145
146     /* write the id3v1 tag */
147     if (id3v1_create_tag(s, buf) > 0) {
148         avio_write(s->pb, buf, ID3v1_TAG_SIZE);
149     }
150
151     /* write number of frames */
152     if (mp3 && mp3->nb_frames_offset) {
153         avio_seek(s->pb, mp3->nb_frames_offset, SEEK_SET);
154         avio_wb32(s->pb, s->streams[0]->nb_frames);
155         avio_seek(s->pb, 0, SEEK_END);
156     }
157
158     avio_flush(s->pb);
159
160     return 0;
161 }
162
163 #if CONFIG_MP2_MUXER
164 AVOutputFormat ff_mp2_muxer = {
165     "mp2",
166     NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
167     "audio/x-mpeg",
168     "mp2,m2a",
169     0,
170     CODEC_ID_MP2,
171     CODEC_ID_NONE,
172     NULL,
173     ff_raw_write_packet,
174     mp3_write_trailer,
175 };
176 #endif
177
178 #if CONFIG_MP3_MUXER
179
180 static const AVOption options[] = {
181     { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
182       offsetof(MP3Context, id3v2_version), FF_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
183     { NULL },
184 };
185
186 static const AVClass mp3_muxer_class = {
187     .class_name     = "MP3 muxer",
188     .item_name      = av_default_item_name,
189     .option         = options,
190     .version        = LIBAVUTIL_VERSION_INT,
191 };
192
193 static int id3v2_check_write_tag(AVFormatContext *s, AVDictionaryEntry *t, const char table[][4],
194                                  enum ID3v2Encoding enc)
195 {
196     uint32_t tag;
197     int i;
198
199     if (t->key[0] != 'T' || strlen(t->key) != 4)
200         return -1;
201     tag = AV_RB32(t->key);
202     for (i = 0; *table[i]; i++)
203         if (tag == AV_RB32(table[i]))
204             return id3v2_put_ttag(s, t->value, NULL, tag, enc);
205     return -1;
206 }
207
208 /* insert a dummy frame containing number of frames */
209 static void mp3_write_xing(AVFormatContext *s)
210 {
211     AVCodecContext *codec = s->streams[0]->codec;
212     MP3Context       *mp3 = s->priv_data;
213     int       bitrate_idx = 1;    // 32 kbps
214     int64_t   xing_offset = (codec->channels == 2) ? 32 : 17;
215     int32_t        header;
216     MPADecodeHeader  mpah;
217     int srate_idx, i, channels;
218
219     for (i = 0; i < FF_ARRAY_ELEMS(ff_mpa_freq_tab); i++)
220         if (ff_mpa_freq_tab[i] == codec->sample_rate) {
221             srate_idx = i;
222             break;
223         }
224     if (i == FF_ARRAY_ELEMS(ff_mpa_freq_tab)) {
225         av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
226         return;
227     }
228
229     switch (codec->channels) {
230     case 1:  channels = MPA_MONO;                                          break;
231     case 2:  channels = MPA_STEREO;                                        break;
232     default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
233     }
234
235     /* dummy MPEG audio header */
236     header  =  0xff                                  << 24; // sync
237     header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
238     header |= (bitrate_idx << 4 | srate_idx << 2)    <<  8;
239     header |= channels << 6;
240     avio_wb32(s->pb, header);
241
242     ff_mpegaudio_decode_header(&mpah, header);
243
244     ffio_fill(s->pb, 0, xing_offset);
245     ffio_wfourcc(s->pb, "Xing");
246     avio_wb32(s->pb, 0x1);    // only number of frames
247     mp3->nb_frames_offset = avio_tell(s->pb);
248     avio_wb32(s->pb, 0);
249
250     mpah.frame_size -= 4 + xing_offset + 4 + 4 + 4;
251     ffio_fill(s->pb, 0, mpah.frame_size);
252 }
253
254 /**
255  * Write an ID3v2 header at beginning of stream
256  */
257
258 static int mp3_write_header(struct AVFormatContext *s)
259 {
260     MP3Context  *mp3 = s->priv_data;
261     AVDictionaryEntry *t = NULL;
262     int totlen = 0, enc = mp3->id3v2_version == 3 ? ID3v2_ENCODING_UTF16BOM :
263                                                     ID3v2_ENCODING_UTF8;
264     int64_t size_pos, cur_pos;
265
266     avio_wb32(s->pb, MKBETAG('I', 'D', '3', mp3->id3v2_version));
267     avio_w8(s->pb, 0);
268     avio_w8(s->pb, 0); /* flags */
269
270     /* reserve space for size */
271     size_pos = avio_tell(s->pb);
272     avio_wb32(s->pb, 0);
273
274     ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL);
275     if (mp3->id3v2_version == 4)
276         ff_metadata_conv(&s->metadata, ff_id3v2_4_metadata_conv, NULL);
277
278     while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX))) {
279         int ret;
280
281         if ((ret = id3v2_check_write_tag(s, t, ff_id3v2_tags, enc)) > 0) {
282             totlen += ret;
283             continue;
284         }
285         if ((ret = id3v2_check_write_tag(s, t, mp3->id3v2_version == 3 ?
286                                                ff_id3v2_3_tags : ff_id3v2_4_tags, enc)) > 0) {
287             totlen += ret;
288             continue;
289         }
290
291         /* unknown tag, write as TXXX frame */
292         if ((ret = id3v2_put_ttag(s, t->key, t->value, MKBETAG('T', 'X', 'X', 'X'), enc)) < 0)
293             return ret;
294         totlen += ret;
295     }
296
297     cur_pos = avio_tell(s->pb);
298     avio_seek(s->pb, size_pos, SEEK_SET);
299     id3v2_put_size(s, totlen);
300     avio_seek(s->pb, cur_pos, SEEK_SET);
301
302     if (s->pb->seekable)
303         mp3_write_xing(s);
304
305     return 0;
306 }
307
308 AVOutputFormat ff_mp3_muxer = {
309     "mp3",
310     NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
311     "audio/x-mpeg",
312     "mp3",
313     sizeof(MP3Context),
314     CODEC_ID_MP3,
315     CODEC_ID_NONE,
316     mp3_write_header,
317     ff_raw_write_packet,
318     mp3_write_trailer,
319     AVFMT_NOTIMESTAMPS,
320     .priv_class = &mp3_muxer_class,
321 };
322 #endif