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