Coverage Report

Created: 2025-11-16 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavformat/aiffdec.c
Line
Count
Source
1
/*
2
 * AIFF/AIFF-C demuxer
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/intreadwrite.h"
23
#include "libavutil/dict.h"
24
#include "libavutil/mem.h"
25
#include "avformat.h"
26
#include "demux.h"
27
#include "internal.h"
28
#include "pcm.h"
29
#include "aiff.h"
30
#include "id3v2.h"
31
#include "mov_chan.h"
32
#include "replaygain.h"
33
34
3.88k
#define AIFF                    0
35
40.6k
#define AIFF_C_VERSION1         0xA2805140
36
37
typedef struct AIFFInputContext {
38
    int64_t data_end;
39
    int block_duration;
40
} AIFFInputContext;
41
42
static enum AVCodecID aiff_codec_get_id(int bps)
43
4.00k
{
44
4.00k
    if (bps <= 8)
45
266
        return AV_CODEC_ID_PCM_S8;
46
3.73k
    if (bps <= 16)
47
248
        return AV_CODEC_ID_PCM_S16BE;
48
3.48k
    if (bps <= 24)
49
139
        return AV_CODEC_ID_PCM_S24BE;
50
3.34k
    if (bps <= 32)
51
2.70k
        return AV_CODEC_ID_PCM_S32BE;
52
53
    /* bigger than 32 isn't allowed  */
54
642
    return AV_CODEC_ID_NONE;
55
3.34k
}
56
57
/* returns the size of the found tag */
58
static int64_t get_tag(AVIOContext *pb, uint32_t * tag)
59
56.3k
{
60
56.3k
    int64_t size;
61
62
56.3k
    if (avio_feof(pb))
63
3.99k
        return AVERROR(EIO);
64
65
52.3k
    *tag = avio_rl32(pb);
66
52.3k
    size = avio_rb32(pb);
67
68
52.3k
    return size;
69
56.3k
}
70
71
/* Metadata string read */
72
static void get_meta(AVFormatContext *s, const char *key, int64_t size)
73
1.48k
{
74
1.48k
    uint8_t *str = NULL;
75
76
1.48k
    if (size < SIZE_MAX)
77
1.48k
        str = av_malloc(size+1);
78
79
1.48k
    if (str) {
80
1.46k
        int res = avio_read(s->pb, str, size);
81
1.46k
        if (res < 0){
82
16
            av_free(str);
83
16
            return;
84
16
        }
85
1.44k
        size -= res;
86
1.44k
        str[res] = 0;
87
1.44k
        av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
88
1.44k
    }
89
90
1.46k
    avio_skip(s->pb, size);
91
1.46k
}
92
93
/* Returns the number of sound data frames or negative on error */
94
static int get_aiff_header(AVFormatContext *s, int64_t size,
95
                                    unsigned version)
96
12.0k
{
97
12.0k
    AVIOContext *pb        = s->pb;
98
12.0k
    AVCodecParameters *par = s->streams[0]->codecpar;
99
12.0k
    AIFFInputContext *aiff = s->priv_data;
100
12.0k
    int exp;
101
12.0k
    uint64_t val;
102
12.0k
    int sample_rate;
103
12.0k
    unsigned int num_frames;
104
12.0k
    int channels;
105
106
12.0k
    if (size & 1)
107
11.6k
        size++;
108
12.0k
    par->codec_type = AVMEDIA_TYPE_AUDIO;
109
12.0k
    channels = avio_rb16(pb);
110
12.0k
    if (par->ch_layout.nb_channels && par->ch_layout.nb_channels != channels)
111
43
        return AVERROR_INVALIDDATA;
112
11.9k
    par->ch_layout.nb_channels = channels;
113
11.9k
    num_frames = avio_rb32(pb);
114
11.9k
    par->bits_per_coded_sample = avio_rb16(pb);
115
116
11.9k
    exp = avio_rb16(pb) - 16383 - 63;
117
11.9k
    val = avio_rb64(pb);
118
11.9k
    if (exp <-63 || exp >63) {
119
59
        av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
120
59
        return AVERROR_INVALIDDATA;
121
59
    }
122
11.9k
    if (exp >= 0)
123
3.90k
        sample_rate = val << exp;
124
8.02k
    else
125
8.02k
        sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
126
11.9k
    if (sample_rate <= 0)
127
61
        return AVERROR_INVALIDDATA;
128
129
11.8k
    par->sample_rate = sample_rate;
130
11.8k
    if (size < 18)
131
6
        return AVERROR_INVALIDDATA;
132
11.8k
    size -= 18;
133
134
    /* get codec id for AIFF-C */
135
11.8k
    if (size < 4) {
136
3.35k
        version = AIFF;
137
8.51k
    } else if (version == AIFF_C_VERSION1) {
138
7.93k
        par->codec_tag = avio_rl32(pb);
139
7.93k
        par->codec_id  = ff_codec_get_id(ff_codec_aiff_tags, par->codec_tag);
140
7.93k
        if (par->codec_id == AV_CODEC_ID_NONE)
141
3.78k
            avpriv_request_sample(s, "unknown or unsupported codec tag: %s",
142
3.78k
                                  av_fourcc2str(par->codec_tag));
143
7.93k
        size -= 4;
144
7.93k
    }
145
146
11.8k
    if (version != AIFF_C_VERSION1 || par->codec_id == AV_CODEC_ID_PCM_S16BE) {
147
4.00k
        par->codec_id = aiff_codec_get_id(par->bits_per_coded_sample);
148
4.00k
        par->bits_per_coded_sample = av_get_bits_per_sample(par->codec_id);
149
4.00k
        aiff->block_duration = 1;
150
7.86k
    } else {
151
7.86k
        switch (par->codec_id) {
152
122
        case AV_CODEC_ID_PCM_F32BE:
153
308
        case AV_CODEC_ID_PCM_F64BE:
154
350
        case AV_CODEC_ID_PCM_S16LE:
155
403
        case AV_CODEC_ID_PCM_ALAW:
156
943
        case AV_CODEC_ID_PCM_MULAW:
157
943
            aiff->block_duration = 1;
158
943
            break;
159
188
        case AV_CODEC_ID_ADPCM_IMA_QT:
160
188
            par->block_align = 34 * channels;
161
188
            break;
162
83
        case AV_CODEC_ID_MACE3:
163
83
            par->block_align = 2 * channels;
164
83
            break;
165
225
        case AV_CODEC_ID_ADPCM_G726LE:
166
225
            par->bits_per_coded_sample = 5;
167
528
        case AV_CODEC_ID_ADPCM_IMA_WS:
168
632
        case AV_CODEC_ID_ADPCM_G722:
169
702
        case AV_CODEC_ID_MACE6:
170
726
        case AV_CODEC_ID_CBD2_DPCM:
171
837
        case AV_CODEC_ID_SDX2_DPCM:
172
837
            par->block_align = 1 * channels;
173
837
            break;
174
219
        case AV_CODEC_ID_GSM:
175
219
            par->block_align = 33;
176
219
            break;
177
18
        case AV_CODEC_ID_G728:
178
18
            par->block_align = 5;
179
18
            break;
180
0
        case AV_CODEC_ID_ADPCM_N64:
181
0
            par->block_align = 9;
182
0
            break;
183
5.57k
        default:
184
5.57k
            aiff->block_duration = 1;
185
5.57k
            break;
186
7.86k
        }
187
7.86k
        if (par->block_align > 0)
188
5.05k
            aiff->block_duration = av_get_audio_frame_duration2(par,
189
5.05k
                                                                par->block_align);
190
7.86k
    }
191
192
    /* Block align needs to be computed in all cases, as the definition
193
     * is specific to applications -> here we use the WAVE format definition */
194
11.8k
    if (!par->block_align)
195
4.26k
        par->block_align = (av_get_bits_per_sample(par->codec_id) * channels) >> 3;
196
197
11.8k
    if (aiff->block_duration) {
198
9.10k
        par->bit_rate = av_rescale(par->sample_rate, par->block_align * 8LL,
199
9.10k
                                   aiff->block_duration);
200
9.10k
        if (par->bit_rate < 0)
201
982
            par->bit_rate = 0;
202
9.10k
    }
203
204
    /* Chunk is over */
205
11.8k
    if (size)
206
1.08k
        avio_skip(pb, size);
207
208
11.8k
    return num_frames;
209
11.8k
}
210
211
static int aiff_probe(const AVProbeData *p)
212
964k
{
213
    /* check file header */
214
964k
    if (AV_RL32(p->buf) == MKTAG('F', 'O', 'R', 'M') &&
215
10.8k
        AV_RB32(p->buf + 4) >= 4 &&
216
10.6k
        p->buf[8] == 'A' && p->buf[9] == 'I' &&
217
875
        p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
218
361
        return AVPROBE_SCORE_MAX;
219
964k
    else
220
964k
        return 0;
221
964k
}
222
223
/* aiff input */
224
static int aiff_read_header(AVFormatContext *s)
225
8.43k
{
226
8.43k
    int ret;
227
8.43k
    int64_t filesize, size;
228
8.43k
    int64_t offset = 0, position;
229
8.43k
    uint32_t tag;
230
8.43k
    unsigned version = AIFF_C_VERSION1;
231
8.43k
    AVIOContext *pb = s->pb;
232
8.43k
    AVStream * st;
233
8.43k
    AIFFInputContext *aiff = s->priv_data;
234
8.43k
    ID3v2ExtraMeta *id3v2_extra_meta;
235
236
    /* check FORM header */
237
8.43k
    filesize = get_tag(pb, &tag);
238
8.43k
    if (filesize < 4 || tag != MKTAG('F', 'O', 'R', 'M'))
239
209
        return AVERROR_INVALIDDATA;
240
241
    /* AIFF data type */
242
8.22k
    tag = avio_rl32(pb);
243
8.22k
    if (tag == MKTAG('A', 'I', 'F', 'F'))       /* Got an AIFF file */
244
537
        version = AIFF;
245
7.69k
    else if (tag != MKTAG('A', 'I', 'F', 'C'))  /* An AIFF-C file then */
246
93
        return AVERROR_INVALIDDATA;
247
248
8.13k
    filesize -= 4;
249
250
8.13k
    st = avformat_new_stream(s, NULL);
251
8.13k
    if (!st)
252
0
        return AVERROR(ENOMEM);
253
254
50.4k
    while (filesize > 0) {
255
        /* parse different chunks */
256
47.8k
        size = get_tag(pb, &tag);
257
258
47.8k
        if (size == AVERROR_EOF && offset > 0 && st->codecpar->block_align) {
259
0
            av_log(s, AV_LOG_WARNING, "header parser hit EOF\n");
260
0
            goto got_sound;
261
0
        }
262
47.8k
        if (size < 0)
263
3.99k
            return size;
264
265
43.8k
        filesize -= size + 8;
266
267
43.8k
        switch (tag) {
268
12.0k
        case MKTAG('C', 'O', 'M', 'M'):     /* Common chunk */
269
            /* Then for the complete header info */
270
12.0k
            st->nb_frames = get_aiff_header(s, size, version);
271
12.0k
            if (st->nb_frames < 0)
272
251
                return st->nb_frames;
273
11.7k
            if (offset > 0) // COMM is after SSND
274
3
                goto got_sound;
275
11.7k
            break;
276
15.4k
        case MKTAG('I', 'D', '3', ' '):
277
15.4k
            position = avio_tell(pb);
278
15.4k
            ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
279
15.4k
            if (id3v2_extra_meta)
280
2.64k
                if ((ret = ff_id3v2_parse_apic(s, id3v2_extra_meta)) < 0 ||
281
2.64k
                    (ret = ff_id3v2_parse_chapters(s, id3v2_extra_meta)) < 0) {
282
1
                    ff_id3v2_free_extra_meta(&id3v2_extra_meta);
283
1
                    return ret;
284
1
                }
285
15.4k
            ff_id3v2_free_extra_meta(&id3v2_extra_meta);
286
15.4k
            if (position + size > avio_tell(pb))
287
11.9k
                avio_skip(pb, position + size - avio_tell(pb));
288
15.4k
            break;
289
213
        case MKTAG('F', 'V', 'E', 'R'):     /* Version chunk */
290
213
            version = avio_rb32(pb);
291
213
            break;
292
403
        case MKTAG('N', 'A', 'M', 'E'):     /* Sample name chunk */
293
403
            get_meta(s, "title"    , size);
294
403
            break;
295
91
        case MKTAG('A', 'U', 'T', 'H'):     /* Author chunk */
296
91
            get_meta(s, "author"   , size);
297
91
            break;
298
898
        case MKTAG('(', 'c', ')', ' '):     /* Copyright chunk */
299
898
            get_meta(s, "copyright", size);
300
898
            break;
301
91
        case MKTAG('A', 'N', 'N', 'O'):     /* Annotation chunk */
302
91
            get_meta(s, "comment"  , size);
303
91
            break;
304
1.06k
        case MKTAG('S', 'S', 'N', 'D'):     /* Sampled sound chunk */
305
1.06k
            if (size < 8)
306
3
                return AVERROR_INVALIDDATA;
307
1.05k
            aiff->data_end = avio_tell(pb) + size;
308
1.05k
            offset = avio_rb32(pb);      /* Offset of sound data */
309
1.05k
            avio_rb32(pb);               /* BlockSize... don't care */
310
1.05k
            offset += avio_tell(pb);    /* Compute absolute data offset */
311
1.05k
            if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL))    /* Assume COMM already parsed */
312
610
                goto got_sound;
313
447
            if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
314
16
                av_log(s, AV_LOG_ERROR, "file is not seekable\n");
315
16
                return -1;
316
16
            }
317
431
            avio_skip(pb, size - 8);
318
431
            break;
319
3.14k
        case MKTAG('w', 'a', 'v', 'e'):
320
3.14k
            if ((uint64_t)size > (1<<30))
321
2
                return AVERROR_INVALIDDATA;
322
3.14k
            if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
323
70
                return ret;
324
3.07k
            if (   (st->codecpar->codec_id == AV_CODEC_ID_QDMC || st->codecpar->codec_id == AV_CODEC_ID_QDM2)
325
1.82k
                && size>=12*4 && !st->codecpar->block_align) {
326
1.08k
                st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
327
1.08k
                aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
328
1.99k
            } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
329
846
                char rate = 0;
330
846
                if (size >= 25)
331
519
                    rate = st->codecpar->extradata[24];
332
846
                switch (rate) {
333
66
                case 'H': // RATE_HALF
334
66
                    st->codecpar->block_align = 17;
335
66
                    break;
336
0
                case 'F': // RATE_FULL
337
780
                default:
338
780
                    st->codecpar->block_align = 35;
339
846
                }
340
846
                aiff->block_duration = 160;
341
846
                st->codecpar->bit_rate = (int64_t)st->codecpar->sample_rate * (st->codecpar->block_align << 3) /
342
846
                                         aiff->block_duration;
343
846
            }
344
3.07k
            break;
345
4.37k
        case MKTAG('C','H','A','N'):
346
4.37k
            if ((ret = ff_mov_read_chan(s, pb, st, size)) < 0)
347
246
                return ret;
348
4.12k
            break;
349
4.12k
        case MKTAG('A','P','C','M'): /* XA ADPCM compressed sound chunk */
350
344
            st->codecpar->codec_id = AV_CODEC_ID_ADPCM_XA;
351
344
            aiff->data_end = avio_tell(pb) + size;
352
344
            offset = avio_tell(pb) + 8;
353
            /* This field is unknown and its data seems to be irrelevant */
354
344
            avio_rb32(pb);
355
344
            st->codecpar->block_align = avio_rb32(pb);
356
357
344
            goto got_sound;
358
0
            break;
359
0
        case MKTAG('A','P','P','L'):
360
0
            if (size > 4) {
361
0
                uint32_t chunk = avio_rl32(pb);
362
363
0
                size -= 4;
364
0
                if (chunk == MKTAG('s','t','o','c')) {
365
0
                    int len = avio_r8(pb);
366
367
0
                    size--;
368
0
                    if (len == 11 && size > 11) {
369
0
                        uint8_t chunk[11];
370
371
0
                        ret = avio_read(pb, chunk, 11);
372
0
                        if (ret > 0)
373
0
                            size -= ret;
374
0
                        if (!memcmp(chunk, "VADPCMCODES", sizeof(chunk))) {
375
0
                            if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
376
0
                                return ret;
377
0
                            size -= ret;
378
0
                        }
379
0
                    }
380
0
                }
381
0
            }
382
0
            avio_skip(pb, size);
383
0
            break;
384
1.50k
        case 0:
385
1.50k
            if (offset > 0 && st->codecpar->block_align) // COMM && SSND
386
31
                goto got_sound;
387
5.77k
        default: /* Jump */
388
5.77k
            avio_skip(pb, size);
389
43.8k
        }
390
391
        /* Skip required padding byte for odd-sized chunks. */
392
42.2k
        if (size & 1) {
393
23.3k
            filesize--;
394
23.3k
            avio_skip(pb, 1);
395
23.3k
        }
396
42.2k
    }
397
398
2.56k
    ret = ff_replaygain_export(st, s->metadata);
399
2.56k
    if (ret < 0)
400
0
        return ret;
401
402
3.54k
got_sound:
403
3.54k
    if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
404
26
        av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
405
26
        st->codecpar->block_align = 35;
406
3.52k
    } else if (st->codecpar->block_align <= 0) {
407
1.25k
        av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
408
1.25k
        return AVERROR_INVALIDDATA;
409
1.25k
    }
410
2.29k
    if (aiff->block_duration < 0)
411
25
        return AVERROR_INVALIDDATA;
412
413
    /* Now positioned, get the sound data start and end */
414
2.26k
    avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
415
2.26k
    st->start_time = 0;
416
2.26k
    st->duration = st->nb_frames * aiff->block_duration;
417
418
    /* Position the stream at the first block */
419
2.26k
    avio_seek(pb, offset, SEEK_SET);
420
421
2.26k
    return 0;
422
2.29k
}
423
424
7.42k
#define MAX_SIZE 4096
425
426
static int aiff_read_packet(AVFormatContext *s,
427
                            AVPacket *pkt)
428
1.26M
{
429
1.26M
    AVStream *st = s->streams[0];
430
1.26M
    AIFFInputContext *aiff = s->priv_data;
431
1.26M
    int64_t max_size;
432
1.26M
    int res, size;
433
434
    /* calculate size of remaining data */
435
1.26M
    max_size = aiff->data_end - avio_tell(s->pb);
436
1.26M
    if (max_size <= 0)
437
2.21k
        return AVERROR_EOF;
438
439
1.26M
    if (!st->codecpar->block_align) {
440
84
        av_log(s, AV_LOG_ERROR, "block_align not set\n");
441
84
        return AVERROR_INVALIDDATA;
442
84
    }
443
444
    /* Now for that packet */
445
1.26M
    switch (st->codecpar->codec_id) {
446
291
    case AV_CODEC_ID_ADPCM_IMA_QT:
447
582
    case AV_CODEC_ID_GSM:
448
1.25M
    case AV_CODEC_ID_QDM2:
449
1.25M
    case AV_CODEC_ID_QCELP:
450
1.25M
        size = st->codecpar->block_align;
451
1.25M
        break;
452
3.71k
    default:
453
3.71k
        size = st->codecpar->block_align ? (MAX_SIZE / st->codecpar->block_align) * st->codecpar->block_align : MAX_SIZE;
454
3.71k
        if (!size)
455
53
            return AVERROR_INVALIDDATA;
456
1.26M
    }
457
1.26M
    size = FFMIN(max_size, size);
458
1.26M
    res = av_get_packet(s->pb, pkt, size);
459
1.26M
    if (res < 0)
460
1.88k
        return res;
461
462
1.25M
    if (size >= st->codecpar->block_align)
463
1.25M
        pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
464
    /* Only one stream in an AIFF file */
465
1.25M
    pkt->stream_index = 0;
466
1.25M
    pkt->duration     = (res / st->codecpar->block_align) * (int64_t) aiff->block_duration;
467
1.25M
    return 0;
468
1.26M
}
469
470
const FFInputFormat ff_aiff_demuxer = {
471
    .p.name         = "aiff",
472
    .p.long_name    = NULL_IF_CONFIG_SMALL("Audio IFF"),
473
    .p.codec_tag    = ff_aiff_codec_tags_list,
474
    .priv_data_size = sizeof(AIFFInputContext),
475
    .read_probe     = aiff_probe,
476
    .read_header    = aiff_read_header,
477
    .read_packet    = aiff_read_packet,
478
    .read_seek      = ff_pcm_read_seek,
479
};