3 * Copyright (c) 2006 Patrick Guimond
5 * This file is part of FFmpeg.
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.
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.
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
24 #include "libavutil/intfloat.h"
25 #include "libavutil/opt.h"
29 #include "avio_internal.h"
33 typedef struct AIFFOutputContext {
39 AVPacketList *pict_list, *pict_list_end;
44 static int put_id3v2_tags(AVFormatContext *s, AIFFOutputContext *aiff)
47 uint64_t pos, end, size;
48 ID3v2EncContext id3v2 = { 0 };
49 AVIOContext *pb = s->pb;
50 AVPacketList *pict_list = aiff->pict_list;
52 if (!s->metadata && !aiff->pict_list)
55 avio_wl32(pb, MKTAG('I', 'D', '3', ' '));
59 ff_id3v2_start(&id3v2, pb, aiff->id3v2_version, ID3v2_DEFAULT_MAGIC);
60 ff_id3v2_write_metadata(s, &id3v2);
62 if ((ret = ff_id3v2_write_apic(s, &id3v2, &pict_list->pkt)) < 0)
64 pict_list = pict_list->next;
66 ff_id3v2_finish(&id3v2, pb, s->metadata_header_padding);
71 /* Update chunk size */
72 avio_seek(pb, pos - 4, SEEK_SET);
74 avio_seek(pb, end, SEEK_SET);
82 static void put_meta(AVFormatContext *s, const char *key, uint32_t id)
84 AVDictionaryEntry *tag;
85 AVIOContext *pb = s->pb;
87 if (tag = av_dict_get(s->metadata, key, NULL, 0)) {
88 int size = strlen(tag->value);
91 avio_wb32(pb, FFALIGN(size, 2));
92 avio_write(pb, tag->value, size);
98 static int aiff_write_header(AVFormatContext *s)
100 AIFFOutputContext *aiff = s->priv_data;
101 AVIOContext *pb = s->pb;
102 AVCodecParameters *par;
103 uint64_t sample_rate;
106 aiff->audio_stream_idx = -1;
107 for (i = 0; i < s->nb_streams; i++) {
108 AVStream *st = s->streams[i];
109 if (aiff->audio_stream_idx < 0 && st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
110 aiff->audio_stream_idx = i;
111 } else if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO) {
112 av_log(s, AV_LOG_ERROR, "AIFF allows only one audio stream and a picture.\n");
113 return AVERROR(EINVAL);
116 if (aiff->audio_stream_idx < 0) {
117 av_log(s, AV_LOG_ERROR, "No audio stream present.\n");
118 return AVERROR(EINVAL);
121 par = s->streams[aiff->audio_stream_idx]->codecpar;
123 /* First verify if format is ok */
125 return AVERROR(EINVAL);
126 if (par->codec_tag != MKTAG('N','O','N','E'))
129 /* FORM AIFF header */
130 ffio_wfourcc(pb, "FORM");
131 aiff->form = avio_tell(pb);
132 avio_wb32(pb, 0); /* file length */
133 ffio_wfourcc(pb, aifc ? "AIFC" : "AIFF");
135 if (aifc) { // compressed audio
136 if (!par->block_align) {
137 av_log(s, AV_LOG_ERROR, "block align not set\n");
138 return AVERROR(EINVAL);
141 ffio_wfourcc(pb, "FVER");
143 avio_wb32(pb, 0xA2805140);
146 if (par->channels > 2 && par->channel_layout) {
147 ffio_wfourcc(pb, "CHAN");
149 ff_mov_write_chan(pb, par->channel_layout);
152 put_meta(s, "title", MKTAG('N', 'A', 'M', 'E'));
153 put_meta(s, "author", MKTAG('A', 'U', 'T', 'H'));
154 put_meta(s, "copyright", MKTAG('(', 'c', ')', ' '));
155 put_meta(s, "comment", MKTAG('A', 'N', 'N', 'O'));
158 ffio_wfourcc(pb, "COMM");
159 avio_wb32(pb, aifc ? 24 : 18); /* size */
160 avio_wb16(pb, par->channels); /* Number of channels */
162 aiff->frames = avio_tell(pb);
163 avio_wb32(pb, 0); /* Number of frames */
165 if (!par->bits_per_coded_sample)
166 par->bits_per_coded_sample = av_get_bits_per_sample(par->codec_id);
167 if (!par->bits_per_coded_sample) {
168 av_log(s, AV_LOG_ERROR, "could not compute bits per sample\n");
169 return AVERROR(EINVAL);
171 if (!par->block_align)
172 par->block_align = (par->bits_per_coded_sample * par->channels) >> 3;
174 avio_wb16(pb, par->bits_per_coded_sample); /* Sample size */
176 sample_rate = av_double2int(par->sample_rate);
177 avio_wb16(pb, (sample_rate >> 52) + (16383 - 1023));
178 avio_wb64(pb, UINT64_C(1) << 63 | sample_rate << 11);
181 avio_wl32(pb, par->codec_tag);
185 if ( (par->codec_tag == MKTAG('Q','D','M','2')
186 || par->codec_tag == MKTAG('Q','c','l','p')) && par->extradata_size) {
187 ffio_wfourcc(pb, "wave");
188 avio_wb32(pb, par->extradata_size);
189 avio_write(pb, par->extradata, par->extradata_size);
192 /* Sound data chunk */
193 ffio_wfourcc(pb, "SSND");
194 aiff->ssnd = avio_tell(pb); /* Sound chunk size */
195 avio_wb32(pb, 0); /* Sound samples data size */
196 avio_wb32(pb, 0); /* Data offset */
197 avio_wb32(pb, 0); /* Block-size (block align) */
199 avpriv_set_pts_info(s->streams[aiff->audio_stream_idx], 64, 1,
200 s->streams[aiff->audio_stream_idx]->codecpar->sample_rate);
205 static int aiff_write_packet(AVFormatContext *s, AVPacket *pkt)
207 AIFFOutputContext *aiff = s->priv_data;
208 AVIOContext *pb = s->pb;
209 if (pkt->stream_index == aiff->audio_stream_idx)
210 avio_write(pb, pkt->data, pkt->size);
212 if (s->streams[pkt->stream_index]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO)
215 /* warn only once for each stream */
216 if (s->streams[pkt->stream_index]->nb_frames == 1) {
217 av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"
218 " ignoring.\n", pkt->stream_index);
220 if (s->streams[pkt->stream_index]->nb_frames >= 1)
223 return ff_packet_list_put(&aiff->pict_list, &aiff->pict_list_end,
224 pkt, FF_PACKETLIST_FLAG_REF_PACKET);
230 static int aiff_write_trailer(AVFormatContext *s)
233 AVIOContext *pb = s->pb;
234 AIFFOutputContext *aiff = s->priv_data;
235 AVCodecParameters *par = s->streams[aiff->audio_stream_idx]->codecpar;
237 /* Chunks sizes must be even */
238 int64_t file_size, end_size;
239 end_size = file_size = avio_tell(pb);
245 if (s->pb->seekable & AVIO_SEEKABLE_NORMAL) {
246 /* Number of sample frames */
247 avio_seek(pb, aiff->frames, SEEK_SET);
248 avio_wb32(pb, (file_size - aiff->ssnd - 12) / par->block_align);
250 /* Sound Data chunk size */
251 avio_seek(pb, aiff->ssnd, SEEK_SET);
252 avio_wb32(pb, file_size - aiff->ssnd - 4);
254 /* return to the end */
255 avio_seek(pb, end_size, SEEK_SET);
258 if (aiff->write_id3v2)
259 if ((ret = put_id3v2_tags(s, aiff)) < 0)
263 file_size = avio_tell(pb);
264 avio_seek(pb, aiff->form, SEEK_SET);
265 avio_wb32(pb, file_size - aiff->form - 4);
271 static void aiff_deinit(AVFormatContext *s)
273 AIFFOutputContext *aiff = s->priv_data;
275 ff_packet_list_free(&aiff->pict_list, &aiff->pict_list_end);
278 #define OFFSET(x) offsetof(AIFFOutputContext, x)
279 #define ENC AV_OPT_FLAG_ENCODING_PARAM
280 static const AVOption options[] = {
281 { "write_id3v2", "Enable ID3 tags writing.",
282 OFFSET(write_id3v2), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, ENC },
283 { "id3v2_version", "Select ID3v2 version to write. Currently 3 and 4 are supported.",
284 OFFSET(id3v2_version), AV_OPT_TYPE_INT, {.i64 = 4}, 3, 4, ENC },
288 static const AVClass aiff_muxer_class = {
289 .class_name = "AIFF muxer",
290 .item_name = av_default_item_name,
292 .version = LIBAVUTIL_VERSION_INT,
295 AVOutputFormat ff_aiff_muxer = {
297 .long_name = NULL_IF_CONFIG_SMALL("Audio IFF"),
298 .mime_type = "audio/aiff",
299 .extensions = "aif,aiff,afc,aifc",
300 .priv_data_size = sizeof(AIFFOutputContext),
301 .audio_codec = AV_CODEC_ID_PCM_S16BE,
302 .video_codec = AV_CODEC_ID_PNG,
303 .write_header = aiff_write_header,
304 .write_packet = aiff_write_packet,
305 .write_trailer = aiff_write_trailer,
306 .deinit = aiff_deinit,
307 .codec_tag = (const AVCodecTag* const []){ ff_codec_aiff_tags, 0 },
308 .priv_class = &aiff_muxer_class,