FFmpeg
Loading...
Searching...
No Matches
cafenc.c
Go to the documentation of this file.
1/*
2 * Core Audio Format muxer
3 * Copyright (c) 2011 Carl Eugen Hoyos
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 <stdint.h>
23
24#include "avformat.h"
25#include "caf.h"
26#include "isom.h"
27#include "avio_internal.h"
28#include "mux.h"
29#include "libavutil/intfloat.h"
30#include "libavutil/dict.h"
31#include "libavutil/mem.h"
32
33#define FRAME_SIZE_OFFSET 40
34
35typedef struct {
38 uint32_t frame_size;
39
40 uint8_t *pakt_buf;
41 unsigned pakt_buf_size;
44
45static uint32_t codec_flags(enum AVCodecID codec_id) {
46 switch (codec_id) {
49 return 1; //< kCAFLinearPCMFormatFlagIsFloat
53 return 2; //< kCAFLinearPCMFormatFlagIsLittleEndian
56 return 3; //< kCAFLinearPCMFormatFlagIsFloat | kCAFLinearPCMFormatFlagIsLittleEndian
57 default:
58 return 0;
59 }
60}
61
62static uint32_t samples_per_packet(const AVCodecParameters *par) {
63 enum AVCodecID codec_id = par->codec_id;
64 int channels = par->ch_layout.nb_channels, block_align = par->block_align;
65 int frame_size = par->frame_size, sample_rate = par->sample_rate;
66
67 switch (codec_id) {
81 return 1;
84 return 6;
86 return 64;
88 case AV_CODEC_ID_GSM:
91 return 160;
93 return 320;
94 case AV_CODEC_ID_MP1:
95 return 384;
97 return frame_size * 48000 / sample_rate;
98 case AV_CODEC_ID_MP2:
99 case AV_CODEC_ID_MP3:
100 return 1152;
101 case AV_CODEC_ID_AC3:
102 return 1536;
103 case AV_CODEC_ID_QDM2:
104 case AV_CODEC_ID_QDMC:
105 return 2048 * channels;
106 case AV_CODEC_ID_ALAC:
107 return 4096;
109 return (block_align - 4 * channels) * 8 / (4 * channels) + 1;
111 return (block_align - 7 * channels) * 2 / channels + 2;
112 default:
113 return 0;
114 }
115}
116
118{
119 AVCodecParameters *par = s->streams[0]->codecpar;
120 unsigned int codec_tag = ff_codec_get_tag(ff_codec_caf_tags, par->codec_id);
121
122 switch (par->codec_id) {
123 case AV_CODEC_ID_AAC:
124 case AV_CODEC_ID_OPUS:
125 av_log(s, AV_LOG_ERROR, "muxing codec currently unsupported\n");
127 }
128
129 if (par->codec_id == AV_CODEC_ID_OPUS && par->ch_layout.nb_channels > 2) {
130 av_log(s, AV_LOG_ERROR, "Only mono and stereo are supported for Opus\n");
131 return AVERROR_INVALIDDATA;
132 }
133
134 if (!codec_tag) {
135 av_log(s, AV_LOG_ERROR, "unsupported codec\n");
136 return AVERROR_INVALIDDATA;
137 }
138
139 // if either block_align or frame_size are 0, we need to check that the output
140 // is seekable. Postpone reporting init as complete until caf_write_header()
141 if (!par->block_align || !par->frame_size)
142 return 1;
143
144 return 0;
145}
146
148{
149 AVIOContext *pb = s->pb;
150 AVCodecParameters *par = s->streams[0]->codecpar;
151 CAFContext *caf = s->priv_data;
152 const AVDictionaryEntry *t = NULL;
153 unsigned int codec_tag = ff_codec_get_tag(ff_codec_caf_tags, par->codec_id);
154 int64_t chunk_size = 0;
155 int sample_rate = par->sample_rate;
156
157 if (!par->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
158 av_log(s, AV_LOG_ERROR, "Muxing variable packet size not supported on non seekable output\n");
159 return AVERROR_INVALIDDATA;
160 }
161
162 caf->frame_size = par->frame_size;
163 if (par->codec_id != AV_CODEC_ID_MP3 || caf->frame_size != 576)
164 caf->frame_size = samples_per_packet(par);
165
166 if (!caf->frame_size && !(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
167 av_log(s, AV_LOG_ERROR, "Muxing variable frame size not supported on non seekable output\n");
168 return AVERROR_INVALIDDATA;
169 }
170
171 if (par->codec_id == AV_CODEC_ID_OPUS)
172 sample_rate = 48000;
173
174 ffio_wfourcc(pb, "caff"); //< mFileType
175 avio_wb16(pb, 1); //< mFileVersion
176 avio_wb16(pb, 0); //< mFileFlags
177
178 ffio_wfourcc(pb, "desc"); //< Audio Description chunk
179 avio_wb64(pb, 32); //< mChunkSize
180 avio_wb64(pb, av_double2int(sample_rate)); //< mSampleRate
181 avio_wl32(pb, codec_tag); //< mFormatID
182 avio_wb32(pb, codec_flags(par->codec_id)); //< mFormatFlags
183 avio_wb32(pb, par->block_align); //< mBytesPerPacket
184 avio_wb32(pb, caf->frame_size); //< mFramesPerPacket
185 avio_wb32(pb, par->ch_layout.nb_channels); //< mChannelsPerFrame
186 avio_wb32(pb, av_get_bits_per_sample(par->codec_id)); //< mBitsPerChannel
187
189 ffio_wfourcc(pb, "chan");
190 avio_wb64(pb, 12);
192 }
193
194 if (par->codec_id == AV_CODEC_ID_ALAC) {
195 ffio_wfourcc(pb, "kuki");
196 avio_wb64(pb, 12 + par->extradata_size);
197 avio_write(pb, "\0\0\0\14frmaalac", 12);
198 avio_write(pb, par->extradata, par->extradata_size);
199 } else if (par->codec_id == AV_CODEC_ID_AMR_NB) {
200 ffio_wfourcc(pb, "kuki");
201 avio_wb64(pb, 29);
202 avio_write(pb, "\0\0\0\14frmasamr", 12);
203 avio_wb32(pb, 0x11); /* size */
204 avio_write(pb, "samrFFMP", 8);
205 avio_w8(pb, 0); /* decoder version */
206
207 avio_wb16(pb, 0x81FF); /* Mode set (all modes for AMR_NB) */
208 avio_w8(pb, 0x00); /* Mode change period (no restriction) */
209 avio_w8(pb, 0x01); /* Frames per sample */
210 } else if (par->codec_id == AV_CODEC_ID_QDM2 || par->codec_id == AV_CODEC_ID_QDMC) {
211 ffio_wfourcc(pb, "kuki");
212 avio_wb64(pb, par->extradata_size);
213 avio_write(pb, par->extradata, par->extradata_size);
214 }
215
217 if (av_dict_count(s->metadata)) {
218 ffio_wfourcc(pb, "info"); //< Information chunk
219 while ((t = av_dict_iterate(s->metadata, t))) {
220 chunk_size += strlen(t->key) + strlen(t->value) + 2;
221 }
222 avio_wb64(pb, chunk_size + 4);
223 avio_wb32(pb, av_dict_count(s->metadata));
224 t = NULL;
225 while ((t = av_dict_iterate(s->metadata, t))) {
226 avio_put_str(pb, t->key);
227 avio_put_str(pb, t->value);
228 }
229 }
230
231 ffio_wfourcc(pb, "data"); //< Audio Data chunk
232 caf->data = avio_tell(pb);
233 avio_wb64(pb, -1); //< mChunkSize
234 avio_wb32(pb, 0); //< mEditCount
235
236 return 0;
237}
238
239static uint8_t *put_variable_length_num(uint8_t *buf, uint32_t num)
240{
241 for (int j = 4; j > 0; j--) {
242 unsigned top = num >> j * 7;
243 if (top)
244 *(buf++) = top | 128;
245 }
246 *(buf++) = num & 127;
247 return buf;
248}
249
251{
252 CAFContext *caf = s->priv_data;
253 AVStream *const st = s->streams[0];
254
255 if (!st->codecpar->block_align || !caf->frame_size) {
256#if SIZE_MAX - 10 < UINT_MAX
257 if (caf->pakt_buf_size > SIZE_MAX - 10)
258 return AVERROR(ERANGE);
259#endif
260 uint8_t *pakt_buf = av_fast_realloc(caf->pakt_buf, &caf->pakt_buf_alloc_size,
261 caf->pakt_buf_size + (size_t)10);
262 if (!pakt_buf)
263 return AVERROR(ENOMEM);
264 caf->pakt_buf = pakt_buf;
265 pakt_buf += caf->pakt_buf_size;
266
267 if (!st->codecpar->block_align)
268 pakt_buf = put_variable_length_num(pakt_buf, pkt->size);
269 if (!caf->frame_size)
270 pakt_buf = put_variable_length_num(pakt_buf, pkt->duration);
271 caf->pakt_buf_size = pakt_buf - caf->pakt_buf;
272 }
273 caf->total_duration += pkt->duration;
274
275 avio_write(s->pb, pkt->data, pkt->size);
276 return 0;
277}
278
280{
281 CAFContext *caf = s->priv_data;
282 AVIOContext *pb = s->pb;
283 AVStream *st = s->streams[0];
284 AVCodecParameters *par = st->codecpar;
285
286 if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
287 int64_t file_size = avio_tell(pb);
288 int64_t packets = (!par->block_align || !caf->frame_size) ? st->nb_frames : 0;
289 int64_t valid_frames = caf->frame_size ? st->nb_frames * caf->frame_size : caf->total_duration;
290 unsigned remainder_frames = valid_frames > caf->total_duration
291 ? valid_frames - caf->total_duration : 0;
292
293 avio_seek(pb, caf->data, SEEK_SET);
294 avio_wb64(pb, file_size - caf->data - 8);
295
296 if (!par->block_align || !caf->frame_size || par->initial_padding || remainder_frames) {
297 valid_frames -= par->initial_padding;
298 valid_frames -= remainder_frames;
299
300 avio_seek(pb, file_size, SEEK_SET);
301 ffio_wfourcc(pb, "pakt");
302 avio_wb64(pb, 24ULL + caf->pakt_buf_size); // size
303 avio_wb64(pb, packets); ///< mNumberPackets
304 avio_wb64(pb, valid_frames); ///< mNumberValidFrames
305 avio_wb32(pb, par->initial_padding); ///< mPrimingFrames
306 avio_wb32(pb, remainder_frames); ///< mRemainderFrames
307 avio_write(pb, caf->pakt_buf, caf->pakt_buf_size);
308 }
309 }
310
311 return 0;
312}
313
315{
316 CAFContext *caf = s->priv_data;
317
318 av_freep(&caf->pakt_buf);
319}
320
322 .p.name = "caf",
323 .p.long_name = NULL_IF_CONFIG_SMALL("Apple CAF (Core Audio Format)"),
324 .p.mime_type = "audio/x-caf",
325 .p.extensions = "caf",
326 .priv_data_size = sizeof(CAFContext),
327 .p.audio_codec = AV_CODEC_ID_PCM_S16BE,
328 .p.video_codec = AV_CODEC_ID_NONE,
329 .p.subtitle_codec = AV_CODEC_ID_NONE,
330 .flags_internal = FF_OFMT_FLAG_MAX_ONE_OF_EACH,
331 .init = caf_write_init,
332 .write_header = caf_write_header,
333 .write_packet = caf_write_packet,
334 .write_trailer = caf_write_trailer,
335 .deinit = caf_write_deinit,
336 .p.codec_tag = ff_caf_codec_tags_list,
337};
const FFOutputFormat ff_caf_muxer
Definition cafenc.c:321
channels
Definition aptx.h:31
Main libavformat public API header.
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition avio.h:41
void avio_wl32(AVIOContext *s, unsigned int val)
Definition aviobuf.c:360
int avio_put_str(AVIOContext *s, const char *str)
Write a NULL-terminated string.
Definition aviobuf.c:376
void avio_w8(AVIOContext *s, int b)
Definition aviobuf.c:184
void avio_wb32(AVIOContext *s, unsigned int val)
Definition aviobuf.c:368
void avio_wb16(AVIOContext *s, unsigned int val)
Definition aviobuf.c:446
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
void avio_wb64(AVIOContext *s, uint64_t val)
Definition aviobuf.c:434
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition aviobuf.c:206
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
const AVCodecTag *const ff_caf_codec_tags_list[]
Definition caf.c:82
const AVCodecTag ff_codec_caf_tags[]
Known codec tags for CAF.
Definition caf.c:34
CAF common code.
static uint32_t samples_per_packet(const AVCodecParameters *par)
Definition cafenc.c:62
static void caf_write_deinit(AVFormatContext *s)
Definition cafenc.c:314
static int caf_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition cafenc.c:250
static int caf_write_trailer(AVFormatContext *s)
Definition cafenc.c:279
static uint32_t codec_flags(enum AVCodecID codec_id)
Definition cafenc.c:45
static uint8_t * put_variable_length_num(uint8_t *buf, uint32_t num)
Definition cafenc.c:239
static int caf_write_header(AVFormatContext *s)
Definition cafenc.c:147
static int caf_write_init(struct AVFormatContext *s)
Definition cafenc.c:117
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
Public dictionary API.
static const uint8_t frame_size[4]
Definition g723_1.h:222
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition utils.c:556
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
@ AV_CODEC_ID_PCM_F32LE
Definition codec_id.h:351
@ AV_CODEC_ID_PCM_S24BE
Definition codec_id.h:343
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
@ AV_CODEC_ID_GSM
as in Berlin toast format
Definition codec_id.h:471
@ AV_CODEC_ID_PCM_F32BE
Definition codec_id.h:350
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_PCM_S16BE
Definition codec_id.h:331
@ AV_CODEC_ID_PCM_S24LE
Definition codec_id.h:342
@ AV_CODEC_ID_MP1
Definition codec_id.h:495
@ AV_CODEC_ID_PCM_S32LE
Definition codec_id.h:338
@ AV_CODEC_ID_PCM_S8
Definition codec_id.h:334
@ AV_CODEC_ID_ADPCM_MS
Definition codec_id.h:376
@ AV_CODEC_ID_GSM_MS
Definition codec_id.h:483
@ AV_CODEC_ID_PCM_ALAW
Definition codec_id.h:337
@ AV_CODEC_ID_PCM_F64LE
Definition codec_id.h:353
@ AV_CODEC_ID_ALAC
Definition codec_id.h:469
@ AV_CODEC_ID_AMR_NB
Definition codec_id.h:434
@ AV_CODEC_ID_MP2
Definition codec_id.h:453
@ AV_CODEC_ID_ADPCM_IMA_QT
Definition codec_id.h:370
@ AV_CODEC_ID_AAC
Definition codec_id.h:455
@ AV_CODEC_ID_PCM_F64BE
Definition codec_id.h:352
@ AV_CODEC_ID_QCELP
Definition codec_id.h:477
@ AV_CODEC_ID_AC3
Definition codec_id.h:456
@ AV_CODEC_ID_MACE3
Definition codec_id.h:462
@ AV_CODEC_ID_MACE6
Definition codec_id.h:463
@ AV_CODEC_ID_QDM2
Definition codec_id.h:472
@ AV_CODEC_ID_PCM_S32BE
Definition codec_id.h:339
@ AV_CODEC_ID_ADPCM_IMA_WAV
Definition codec_id.h:371
@ AV_CODEC_ID_ILBC
Definition codec_id.h:512
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition codec_id.h:454
@ AV_CODEC_ID_QDMC
Definition codec_id.h:503
@ AV_CODEC_ID_OPUS
Definition codec_id.h:513
@ AV_CODEC_ID_PCM_MULAW
Definition codec_id.h:336
@ AV_CHANNEL_ORDER_NATIVE
The native channel order, i.e.
const AVDictionaryEntry * av_dict_iterate(const AVDictionary *m, const AVDictionaryEntry *prev)
Iterate over a dictionary.
Definition dict.c:42
int av_dict_count(const AVDictionary *m)
Get number of entries in dictionary.
Definition dict.c:37
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
Definition mem.c:495
static av_always_inline uint64_t av_double2int(double f)
Reinterpret a double as a 64-bit integer.
Definition intfloat.h:70
void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout)
Definition isom.c:430
unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id)
Definition utils.c:133
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
Memory handling functions.
#define FF_OFMT_FLAG_MAX_ONE_OF_EACH
If this flag is set, it indicates that for each codec type whose corresponding default codec (i....
Definition mux.h:50
int ff_standardize_creation_time(AVFormatContext *s)
Standardize creation_time metadata in AVFormatContext to an ISO-8601 timestamp string.
Definition mux_utils.c:154
enum AVChannelOrder order
Channel order used in this layout.
uint64_t mask
This member must be used for AV_CHANNEL_ORDER_NATIVE, and may be used for AV_CHANNEL_ORDER_AMBISONIC ...
union AVChannelLayout::@162063043056170047076125117143030261346263330336 u
Details about which channels are present in this layout.
int nb_channels
Number of channels in this layout.
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
int extradata_size
Size of the extradata content in bytes.
Definition codec_par.h:75
int frame_size
Audio frame size, if known.
Definition codec_par.h:227
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
int initial_padding
Number of padding audio samples at the start.
Definition codec_par.h:239
char * key
Definition dict.h:91
char * value
Definition dict.h:92
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition avio.h:261
This structure stores compressed data.
Definition packet.h:580
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
int64_t nb_frames
number of frames in this stream if known or 0
Definition avformat.h:827
uint32_t frame_size
Definition cafenc.c:38
int64_t data
Definition cafenc.c:36
unsigned pakt_buf_size
Definition cafenc.c:41
unsigned pakt_buf_alloc_size
Definition cafenc.c:42
int64_t total_duration
Definition cafenc.c:37
uint8_t * pakt_buf
Definition cafenc.c:40
#define av_freep(p)
#define av_log(a,...)
enum AVCodecID codec_id