]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3enc.c
AVOptions: make default_val a union, as proposed in AVOption2.
[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 "id3v1.h"
25 #include "id3v2.h"
26 #include "rawenc.h"
27 #include "libavutil/avstring.h"
28 #include "libavutil/intreadwrite.h"
29 #include "libavutil/opt.h"
30
31 static int id3v1_set_string(AVFormatContext *s, const char *key,
32                             uint8_t *buf, int buf_size)
33 {
34     AVMetadataTag *tag;
35     if ((tag = av_metadata_get(s->metadata, key, NULL, 0)))
36         av_strlcpy(buf, tag->value, buf_size);
37     return !!tag;
38 }
39
40 static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
41 {
42     AVMetadataTag *tag;
43     int i, count = 0;
44
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_metadata_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_metadata_get(s->metadata, "TCON", NULL, 0))) { //genre
61         for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
62             if (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
63                 buf[127] = i;
64                 count++;
65                 break;
66             }
67         }
68     }
69     return count;
70 }
71
72 /* simple formats */
73
74 static void id3v2_put_size(AVFormatContext *s, int size)
75 {
76     avio_w8(s->pb, size >> 21 & 0x7f);
77     avio_w8(s->pb, size >> 14 & 0x7f);
78     avio_w8(s->pb, size >> 7  & 0x7f);
79     avio_w8(s->pb, size       & 0x7f);
80 }
81
82 static int string_is_ascii(const uint8_t *str)
83 {
84     while (*str && *str < 128) str++;
85     return !*str;
86 }
87
88 /**
89  * Write a text frame with one (normal frames) or two (TXXX frames) strings
90  * according to encoding (only UTF-8 or UTF-16+BOM supported).
91  * @return number of bytes written or a negative error code.
92  */
93 static int id3v2_put_ttag(AVFormatContext *s, const char *str1, const char *str2,
94                           uint32_t tag, enum ID3v2Encoding enc)
95 {
96     int len;
97     uint8_t *pb;
98     int (*put)(AVIOContext*, const char*);
99     AVIOContext *dyn_buf;
100     if (avio_open_dyn_buf(&dyn_buf) < 0)
101         return AVERROR(ENOMEM);
102
103     /* check if the strings are ASCII-only and use UTF16 only if
104      * they're not */
105     if (enc == ID3v2_ENCODING_UTF16BOM && string_is_ascii(str1) &&
106         (!str2 || string_is_ascii(str2)))
107         enc = ID3v2_ENCODING_ISO8859;
108
109     avio_w8(dyn_buf, enc);
110     if (enc == ID3v2_ENCODING_UTF16BOM) {
111         avio_wl16(dyn_buf, 0xFEFF);      /* BOM */
112         put = avio_put_str16le;
113     } else
114         put = avio_put_str;
115
116     put(dyn_buf, str1);
117     if (str2)
118         put(dyn_buf, str2);
119     len = avio_close_dyn_buf(dyn_buf, &pb);
120
121     avio_wb32(s->pb, tag);
122     id3v2_put_size(s, len);
123     avio_wb16(s->pb, 0);
124     avio_write(s->pb, pb, len);
125
126     av_freep(&pb);
127     return len + ID3v2_HEADER_SIZE;
128 }
129
130 static int mp3_write_trailer(struct AVFormatContext *s)
131 {
132     uint8_t buf[ID3v1_TAG_SIZE];
133
134     /* write the id3v1 tag */
135     if (id3v1_create_tag(s, buf) > 0) {
136         avio_write(s->pb, buf, ID3v1_TAG_SIZE);
137         avio_flush(s->pb);
138     }
139     return 0;
140 }
141
142 #if CONFIG_MP2_MUXER
143 AVOutputFormat ff_mp2_muxer = {
144     "mp2",
145     NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
146     "audio/x-mpeg",
147     "mp2,m2a",
148     0,
149     CODEC_ID_MP2,
150     CODEC_ID_NONE,
151     NULL,
152     ff_raw_write_packet,
153     mp3_write_trailer,
154 };
155 #endif
156
157 #if CONFIG_MP3_MUXER
158 typedef struct MP3Context {
159     const AVClass *class;
160     int id3v2_version;
161 } MP3Context;
162
163 static const AVOption options[] = {
164     { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
165       offsetof(MP3Context, id3v2_version), FF_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
166     { NULL },
167 };
168
169 static const AVClass mp3_muxer_class = {
170     "MP3 muxer",
171     av_default_item_name,
172     options,
173     LIBAVUTIL_VERSION_INT,
174 };
175
176 static int id3v2_check_write_tag(AVFormatContext *s, AVMetadataTag *t, const char table[][4],
177                                  enum ID3v2Encoding enc)
178 {
179     uint32_t tag;
180     int i;
181
182     if (t->key[0] != 'T' || strlen(t->key) != 4)
183         return -1;
184     tag = AV_RB32(t->key);
185     for (i = 0; *table[i]; i++)
186         if (tag == AV_RB32(table[i]))
187             return id3v2_put_ttag(s, t->value, NULL, tag, enc);
188     return -1;
189 }
190
191 /**
192  * Write an ID3v2 header at beginning of stream
193  */
194
195 static int mp3_write_header(struct AVFormatContext *s)
196 {
197     MP3Context  *mp3 = s->priv_data;
198     AVMetadataTag *t = NULL;
199     int totlen = 0, enc = mp3->id3v2_version == 3 ? ID3v2_ENCODING_UTF16BOM :
200                                                     ID3v2_ENCODING_UTF8;
201     int64_t size_pos, cur_pos;
202
203     avio_wb32(s->pb, MKBETAG('I', 'D', '3', mp3->id3v2_version));
204     avio_w8(s->pb, 0);
205     avio_w8(s->pb, 0); /* flags */
206
207     /* reserve space for size */
208     size_pos = avio_tell(s->pb);
209     avio_wb32(s->pb, 0);
210
211     ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL);
212     if (mp3->id3v2_version == 4)
213         ff_metadata_conv(&s->metadata, ff_id3v2_4_metadata_conv, NULL);
214
215     while ((t = av_metadata_get(s->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
216         int ret;
217
218         if ((ret = id3v2_check_write_tag(s, t, ff_id3v2_tags, enc)) > 0) {
219             totlen += ret;
220             continue;
221         }
222         if ((ret = id3v2_check_write_tag(s, t, mp3->id3v2_version == 3 ?
223                                                ff_id3v2_3_tags : ff_id3v2_4_tags, enc)) > 0) {
224             totlen += ret;
225             continue;
226         }
227
228         /* unknown tag, write as TXXX frame */
229         if ((ret = id3v2_put_ttag(s, t->key, t->value, MKBETAG('T', 'X', 'X', 'X'), enc)) < 0)
230             return ret;
231         totlen += ret;
232     }
233
234     cur_pos = avio_tell(s->pb);
235     avio_seek(s->pb, size_pos, SEEK_SET);
236     id3v2_put_size(s, totlen);
237     avio_seek(s->pb, cur_pos, SEEK_SET);
238
239     return 0;
240 }
241
242 AVOutputFormat ff_mp3_muxer = {
243     "mp3",
244     NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
245     "audio/x-mpeg",
246     "mp3",
247     sizeof(MP3Context),
248     CODEC_ID_MP3,
249     CODEC_ID_NONE,
250     mp3_write_header,
251     ff_raw_write_packet,
252     mp3_write_trailer,
253     AVFMT_NOTIMESTAMPS,
254     .priv_class = &mp3_muxer_class,
255 };
256 #endif