]> git.sesse.net Git - ffmpeg/blob - libavformat/aiffenc.c
lavf: split packets before muxing.
[ffmpeg] / libavformat / aiffenc.c
1 /*
2  * AIFF/AIFF-C muxer
3  * Copyright (c) 2006  Patrick Guimond
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 "libavutil/intfloat.h"
23 #include "avformat.h"
24 #include "internal.h"
25 #include "aiff.h"
26 #include "avio_internal.h"
27 #include "isom.h"
28
29 typedef struct {
30     int64_t form;
31     int64_t frames;
32     int64_t ssnd;
33 } AIFFOutputContext;
34
35 static int aiff_write_header(AVFormatContext *s)
36 {
37     AIFFOutputContext *aiff = s->priv_data;
38     AVIOContext *pb = s->pb;
39     AVCodecContext *enc = s->streams[0]->codec;
40     uint64_t sample_rate;
41     int aifc = 0;
42
43     /* First verify if format is ok */
44     if (!enc->codec_tag)
45         return -1;
46     if (enc->codec_tag != MKTAG('N','O','N','E'))
47         aifc = 1;
48
49     /* FORM AIFF header */
50     ffio_wfourcc(pb, "FORM");
51     aiff->form = avio_tell(pb);
52     avio_wb32(pb, 0);                    /* file length */
53     ffio_wfourcc(pb, aifc ? "AIFC" : "AIFF");
54
55     if (aifc) { // compressed audio
56         if (!enc->block_align) {
57             av_log(s, AV_LOG_ERROR, "block align not set\n");
58             return -1;
59         }
60         /* Version chunk */
61         ffio_wfourcc(pb, "FVER");
62         avio_wb32(pb, 4);
63         avio_wb32(pb, 0xA2805140);
64     }
65
66     if (enc->channels > 2 && enc->channel_layout) {
67         ffio_wfourcc(pb, "CHAN");
68         avio_wb32(pb, 12);
69         ff_mov_write_chan(pb, enc->channel_layout);
70     }
71
72     /* Common chunk */
73     ffio_wfourcc(pb, "COMM");
74     avio_wb32(pb, aifc ? 24 : 18); /* size */
75     avio_wb16(pb, enc->channels);  /* Number of channels */
76
77     aiff->frames = avio_tell(pb);
78     avio_wb32(pb, 0);              /* Number of frames */
79
80     if (!enc->bits_per_coded_sample)
81         enc->bits_per_coded_sample = av_get_bits_per_sample(enc->codec_id);
82     if (!enc->bits_per_coded_sample) {
83         av_log(s, AV_LOG_ERROR, "could not compute bits per sample\n");
84         return -1;
85     }
86     if (!enc->block_align)
87         enc->block_align = (enc->bits_per_coded_sample * enc->channels) >> 3;
88
89     avio_wb16(pb, enc->bits_per_coded_sample); /* Sample size */
90
91     sample_rate = av_double2int(enc->sample_rate);
92     avio_wb16(pb, (sample_rate >> 52) + (16383 - 1023));
93     avio_wb64(pb, UINT64_C(1) << 63 | sample_rate << 11);
94
95     if (aifc) {
96         avio_wl32(pb, enc->codec_tag);
97         avio_wb16(pb, 0);
98     }
99
100     if (enc->codec_tag == MKTAG('Q','D','M','2') && enc->extradata_size) {
101         ffio_wfourcc(pb, "wave");
102         avio_wb32(pb, enc->extradata_size);
103         avio_write(pb, enc->extradata, enc->extradata_size);
104     }
105
106     /* Sound data chunk */
107     ffio_wfourcc(pb, "SSND");
108     aiff->ssnd = avio_tell(pb);         /* Sound chunk size */
109     avio_wb32(pb, 0);                    /* Sound samples data size */
110     avio_wb32(pb, 0);                    /* Data offset */
111     avio_wb32(pb, 0);                    /* Block-size (block align) */
112
113     avpriv_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
114
115     /* Data is starting here */
116     avio_flush(pb);
117
118     return 0;
119 }
120
121 static int aiff_write_packet(AVFormatContext *s, AVPacket *pkt)
122 {
123     AVIOContext *pb = s->pb;
124     avio_write(pb, pkt->data, pkt->size);
125     return 0;
126 }
127
128 static int aiff_write_trailer(AVFormatContext *s)
129 {
130     AVIOContext *pb = s->pb;
131     AIFFOutputContext *aiff = s->priv_data;
132     AVCodecContext *enc = s->streams[0]->codec;
133
134     /* Chunks sizes must be even */
135     int64_t file_size, end_size;
136     end_size = file_size = avio_tell(pb);
137     if (file_size & 1) {
138         avio_w8(pb, 0);
139         end_size++;
140     }
141
142     if (s->pb->seekable) {
143         /* File length */
144         avio_seek(pb, aiff->form, SEEK_SET);
145         avio_wb32(pb, file_size - aiff->form - 4);
146
147         /* Number of sample frames */
148         avio_seek(pb, aiff->frames, SEEK_SET);
149         avio_wb32(pb, (file_size-aiff->ssnd-12)/enc->block_align);
150
151         /* Sound Data chunk size */
152         avio_seek(pb, aiff->ssnd, SEEK_SET);
153         avio_wb32(pb, file_size - aiff->ssnd - 4);
154
155         /* return to the end */
156         avio_seek(pb, end_size, SEEK_SET);
157
158         avio_flush(pb);
159     }
160
161     return 0;
162 }
163
164 AVOutputFormat ff_aiff_muxer = {
165     .name              = "aiff",
166     .long_name         = NULL_IF_CONFIG_SMALL("Audio IFF"),
167     .mime_type         = "audio/aiff",
168     .extensions        = "aif,aiff,afc,aifc",
169     .priv_data_size    = sizeof(AIFFOutputContext),
170     .audio_codec       = AV_CODEC_ID_PCM_S16BE,
171     .video_codec       = AV_CODEC_ID_NONE,
172     .write_header      = aiff_write_header,
173     .write_packet      = aiff_write_packet,
174     .write_trailer     = aiff_write_trailer,
175     .codec_tag         = (const AVCodecTag* const []){ ff_codec_aiff_tags, 0 },
176 };