]> git.sesse.net Git - ffmpeg/blob - libavformat/mp3enc.c
e3c0987b6e19939c3e20215f805d08b22d906863
[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 typedef struct MP3Context {
78     const AVClass *class;
79     int id3v2_version;
80     int write_id3v1;
81     int64_t nb_frames_offset;
82 } MP3Context;
83
84 static int mp3_write_trailer(struct AVFormatContext *s)
85 {
86     uint8_t buf[ID3v1_TAG_SIZE];
87     MP3Context *mp3 = s->priv_data;
88
89     /* write the id3v1 tag */
90     if (mp3 && mp3->write_id3v1 && id3v1_create_tag(s, buf) > 0) {
91         avio_write(s->pb, buf, ID3v1_TAG_SIZE);
92     }
93
94     /* write number of frames */
95     if (mp3 && mp3->nb_frames_offset) {
96         avio_seek(s->pb, mp3->nb_frames_offset, SEEK_SET);
97         avio_wb32(s->pb, s->streams[0]->nb_frames);
98         avio_seek(s->pb, 0, SEEK_END);
99     }
100
101     avio_flush(s->pb);
102
103     return 0;
104 }
105
106 #if CONFIG_MP2_MUXER
107 AVOutputFormat ff_mp2_muxer = {
108     .name              = "mp2",
109     .long_name         = NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
110     .mime_type         = "audio/x-mpeg",
111     .extensions        = "mp2,m2a",
112     .audio_codec       = CODEC_ID_MP2,
113     .video_codec       = CODEC_ID_NONE,
114     .write_packet      = ff_raw_write_packet,
115     .write_trailer     = mp3_write_trailer,
116 };
117 #endif
118
119 #if CONFIG_MP3_MUXER
120
121 static const AVOption options[] = {
122     { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
123       offsetof(MP3Context, id3v2_version), AV_OPT_TYPE_INT, {.dbl = 4}, 3, 4, AV_OPT_FLAG_ENCODING_PARAM},
124     { "write_id3v1", "Enable ID3v1 writing. ID3v1 tags are written in UTF-8 which may not be supported by most software.",
125       offsetof(MP3Context, write_id3v1), AV_OPT_TYPE_INT, {.dbl = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
126     { NULL },
127 };
128
129 static const AVClass mp3_muxer_class = {
130     .class_name     = "MP3 muxer",
131     .item_name      = av_default_item_name,
132     .option         = options,
133     .version        = LIBAVUTIL_VERSION_INT,
134 };
135
136 /* insert a dummy frame containing number of frames */
137 static void mp3_write_xing(AVFormatContext *s)
138 {
139     AVCodecContext *codec = s->streams[0]->codec;
140     MP3Context       *mp3 = s->priv_data;
141     int       bitrate_idx = 1;    // 32 kbps
142     int64_t   xing_offset = (codec->channels == 2) ? 32 : 17;
143     int32_t        header;
144     MPADecodeHeader  mpah;
145     int srate_idx, i, channels;
146
147     for (i = 0; i < FF_ARRAY_ELEMS(avpriv_mpa_freq_tab); i++)
148         if (avpriv_mpa_freq_tab[i] == codec->sample_rate) {
149             srate_idx = i;
150             break;
151         }
152     if (i == FF_ARRAY_ELEMS(avpriv_mpa_freq_tab)) {
153         av_log(s, AV_LOG_ERROR, "Unsupported sample rate.\n");
154         return;
155     }
156
157     switch (codec->channels) {
158     case 1:  channels = MPA_MONO;                                          break;
159     case 2:  channels = MPA_STEREO;                                        break;
160     default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
161     }
162
163     /* dummy MPEG audio header */
164     header  =  0xff                                  << 24; // sync
165     header |= (0x7 << 5 | 0x3 << 3 | 0x1 << 1 | 0x1) << 16; // sync/mpeg-1/layer 3/no crc*/
166     header |= (bitrate_idx << 4 | srate_idx << 2)    <<  8;
167     header |= channels << 6;
168     avio_wb32(s->pb, header);
169
170     avpriv_mpegaudio_decode_header(&mpah, header);
171
172     ffio_fill(s->pb, 0, xing_offset);
173     ffio_wfourcc(s->pb, "Xing");
174     avio_wb32(s->pb, 0x1);    // only number of frames
175     mp3->nb_frames_offset = avio_tell(s->pb);
176     avio_wb32(s->pb, 0);
177
178     mpah.frame_size -= 4 + xing_offset + 4 + 4 + 4;
179     ffio_fill(s->pb, 0, mpah.frame_size);
180 }
181
182 /**
183  * Write an ID3v2 header at beginning of stream
184  */
185
186 static int mp3_write_header(struct AVFormatContext *s)
187 {
188     MP3Context  *mp3 = s->priv_data;
189     int ret;
190
191     ret = ff_id3v2_write(s, mp3->id3v2_version, ID3v2_DEFAULT_MAGIC);
192     if (ret < 0)
193         return ret;
194
195     if (s->pb->seekable)
196         mp3_write_xing(s);
197
198     return 0;
199 }
200
201 AVOutputFormat ff_mp3_muxer = {
202     .name              = "mp3",
203     .long_name         = NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
204     .mime_type         = "audio/x-mpeg",
205     .extensions        = "mp3",
206     .priv_data_size    = sizeof(MP3Context),
207     .audio_codec       = CODEC_ID_MP3,
208     .video_codec       = CODEC_ID_NONE,
209     .write_header      = mp3_write_header,
210     .write_packet      = ff_raw_write_packet,
211     .write_trailer     = mp3_write_trailer,
212     .flags             = AVFMT_NOTIMESTAMPS,
213     .priv_class = &mp3_muxer_class,
214 };
215 #endif