Coverage Report

Created: 2025-12-31 07:57

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.79k
#define AIFF                    0
35
42.3k
#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
3.94k
{
44
3.94k
    if (bps <= 8)
45
257
        return AV_CODEC_ID_PCM_S8;
46
3.68k
    if (bps <= 16)
47
240
        return AV_CODEC_ID_PCM_S16BE;
48
3.44k
    if (bps <= 24)
49
141
        return AV_CODEC_ID_PCM_S24BE;
50
3.30k
    if (bps <= 32)
51
2.66k
        return AV_CODEC_ID_PCM_S32BE;
52
53
    /* bigger than 32 isn't allowed  */
54
640
    return AV_CODEC_ID_NONE;
55
3.30k
}
56
57
/* returns the size of the found tag */
58
static int64_t get_tag(AVIOContext *pb, uint32_t * tag)
59
58.7k
{
60
58.7k
    int64_t size;
61
62
58.7k
    if (avio_feof(pb))
63
4.07k
        return AVERROR_INVALIDDATA;
64
65
54.6k
    *tag = avio_rl32(pb);
66
54.6k
    size = avio_rb32(pb);
67
68
54.6k
    return size;
69
58.7k
}
70
71
/* Metadata string read */
72
static void get_meta(AVFormatContext *s, const char *key, int64_t size)
73
1.66k
{
74
1.66k
    uint8_t *str = NULL;
75
76
1.66k
    if (size < SIZE_MAX)
77
1.66k
        str = av_malloc(size+1);
78
79
1.66k
    if (str) {
80
1.62k
        int res = avio_read(s->pb, str, size);
81
1.62k
        if (res < 0){
82
11
            av_free(str);
83
11
            return;
84
11
        }
85
1.61k
        size -= res;
86
1.61k
        str[res] = 0;
87
1.61k
        av_dict_set(&s->metadata, key, str, AV_DICT_DONT_STRDUP_VAL);
88
1.61k
    }
89
90
1.65k
    avio_skip(s->pb, size);
91
1.65k
}
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.5k
{
97
12.5k
    AVIOContext *pb        = s->pb;
98
12.5k
    AVCodecParameters *par = s->streams[0]->codecpar;
99
12.5k
    AIFFInputContext *aiff = s->priv_data;
100
12.5k
    int exp;
101
12.5k
    uint64_t val;
102
12.5k
    int sample_rate;
103
12.5k
    unsigned int num_frames;
104
12.5k
    int channels;
105
106
12.5k
    if (size & 1)
107
12.0k
        size++;
108
12.5k
    par->codec_type = AVMEDIA_TYPE_AUDIO;
109
12.5k
    channels = avio_rb16(pb);
110
12.5k
    if (par->ch_layout.nb_channels && par->ch_layout.nb_channels != channels)
111
35
        return AVERROR_INVALIDDATA;
112
12.4k
    par->ch_layout.nb_channels = channels;
113
12.4k
    num_frames = avio_rb32(pb);
114
12.4k
    par->bits_per_coded_sample = avio_rb16(pb);
115
116
12.4k
    exp = avio_rb16(pb) - 16383 - 63;
117
12.4k
    val = avio_rb64(pb);
118
12.4k
    if (exp <-63 || exp >63) {
119
64
        av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);
120
64
        return AVERROR_INVALIDDATA;
121
64
    }
122
12.4k
    if (exp >= 0)
123
3.83k
        sample_rate = val << exp;
124
8.57k
    else
125
8.57k
        sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;
126
12.4k
    if (sample_rate <= 0)
127
53
        return AVERROR_INVALIDDATA;
128
129
12.3k
    par->sample_rate = sample_rate;
130
12.3k
    if (size < 18)
131
4
        return AVERROR_INVALIDDATA;
132
12.3k
    size -= 18;
133
134
    /* get codec id for AIFF-C */
135
12.3k
    if (size < 4) {
136
3.29k
        version = AIFF;
137
9.06k
    } else if (version == AIFF_C_VERSION1) {
138
8.50k
        par->codec_tag = avio_rl32(pb);
139
8.50k
        par->codec_id  = ff_codec_get_id(ff_codec_aiff_tags, par->codec_tag);
140
8.50k
        if (par->codec_id == AV_CODEC_ID_NONE)
141
4.21k
            avpriv_request_sample(s, "unknown or unsupported codec tag: %s",
142
4.21k
                                  av_fourcc2str(par->codec_tag));
143
8.50k
        size -= 4;
144
8.50k
    }
145
146
12.3k
    if (version != AIFF_C_VERSION1 || par->codec_id == AV_CODEC_ID_PCM_S16BE) {
147
3.94k
        par->codec_id = aiff_codec_get_id(par->bits_per_coded_sample);
148
3.94k
        par->bits_per_coded_sample = av_get_bits_per_sample(par->codec_id);
149
3.94k
        aiff->block_duration = 1;
150
8.41k
    } else {
151
8.41k
        switch (par->codec_id) {
152
122
        case AV_CODEC_ID_PCM_F32BE:
153
305
        case AV_CODEC_ID_PCM_F64BE:
154
346
        case AV_CODEC_ID_PCM_S16LE:
155
404
        case AV_CODEC_ID_PCM_ALAW:
156
953
        case AV_CODEC_ID_PCM_MULAW:
157
953
            aiff->block_duration = 1;
158
953
            break;
159
222
        case AV_CODEC_ID_ADPCM_IMA_QT:
160
222
            par->block_align = 34 * channels;
161
222
            break;
162
83
        case AV_CODEC_ID_MACE3:
163
83
            par->block_align = 2 * channels;
164
83
            break;
165
202
        case AV_CODEC_ID_ADPCM_G726LE:
166
202
            par->bits_per_coded_sample = 5;
167
531
        case AV_CODEC_ID_ADPCM_IMA_WS:
168
646
        case AV_CODEC_ID_ADPCM_G722:
169
717
        case AV_CODEC_ID_MACE6:
170
739
        case AV_CODEC_ID_CBD2_DPCM:
171
858
        case AV_CODEC_ID_SDX2_DPCM:
172
858
            par->block_align = 1 * channels;
173
858
            break;
174
218
        case AV_CODEC_ID_GSM:
175
218
            par->block_align = 33;
176
218
            break;
177
16
        case AV_CODEC_ID_G728:
178
16
            par->block_align = 5;
179
16
            break;
180
18
        case AV_CODEC_ID_ADPCM_N64:
181
18
            par->block_align = 9;
182
18
            break;
183
6.04k
        default:
184
6.04k
            aiff->block_duration = 1;
185
6.04k
            break;
186
8.41k
        }
187
8.41k
        if (par->block_align > 0)
188
5.25k
            aiff->block_duration = av_get_audio_frame_duration2(par,
189
5.25k
                                                                par->block_align);
190
8.41k
    }
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
12.3k
    if (!par->block_align)
195
4.60k
        par->block_align = (av_get_bits_per_sample(par->codec_id) * channels) >> 3;
196
197
12.3k
    if (aiff->block_duration) {
198
9.49k
        par->bit_rate = av_rescale(par->sample_rate, par->block_align * 8LL,
199
9.49k
                                   aiff->block_duration);
200
9.49k
        if (par->bit_rate < 0)
201
978
            par->bit_rate = 0;
202
9.49k
    }
203
204
    /* Chunk is over */
205
12.3k
    if (size)
206
1.11k
        avio_skip(pb, size);
207
208
12.3k
    return num_frames;
209
12.3k
}
210
211
static int aiff_probe(const AVProbeData *p)
212
942k
{
213
    /* check file header */
214
942k
    if (AV_RL32(p->buf) == MKTAG('F', 'O', 'R', 'M') &&
215
10.5k
        AV_RB32(p->buf + 4) >= 4 &&
216
10.3k
        p->buf[8] == 'A' && p->buf[9] == 'I' &&
217
798
        p->buf[10] == 'F' && (p->buf[11] == 'F' || p->buf[11] == 'C'))
218
351
        return AVPROBE_SCORE_MAX;
219
942k
    else
220
942k
        return 0;
221
942k
}
222
223
/* aiff input */
224
static int aiff_read_header(AVFormatContext *s)
225
8.61k
{
226
8.61k
    int ret;
227
8.61k
    int64_t filesize, size;
228
8.61k
    int64_t offset = 0, position;
229
8.61k
    uint32_t tag;
230
8.61k
    unsigned version = AIFF_C_VERSION1;
231
8.61k
    AVIOContext *pb = s->pb;
232
8.61k
    AVStream * st;
233
8.61k
    AIFFInputContext *aiff = s->priv_data;
234
8.61k
    ID3v2ExtraMeta *id3v2_extra_meta;
235
236
    /* check FORM header */
237
8.61k
    filesize = get_tag(pb, &tag);
238
8.61k
    if (filesize < 4 || tag != MKTAG('F', 'O', 'R', 'M'))
239
173
        return AVERROR_INVALIDDATA;
240
241
    /* AIFF data type */
242
8.43k
    tag = avio_rl32(pb);
243
8.43k
    if (tag == MKTAG('A', 'I', 'F', 'F'))       /* Got an AIFF file */
244
506
        version = AIFF;
245
7.93k
    else if (tag != MKTAG('A', 'I', 'F', 'C'))  /* An AIFF-C file then */
246
93
        return AVERROR_INVALIDDATA;
247
248
8.34k
    filesize -= 4;
249
250
8.34k
    st = avformat_new_stream(s, NULL);
251
8.34k
    if (!st)
252
0
        return AVERROR(ENOMEM);
253
254
52.7k
    while (filesize > 0) {
255
        /* parse different chunks */
256
50.1k
        size = get_tag(pb, &tag);
257
258
50.1k
        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
50.1k
        if (size < 0)
263
4.07k
            return size;
264
265
46.0k
        filesize -= size + 8;
266
267
46.0k
        switch (tag) {
268
12.5k
        case MKTAG('C', 'O', 'M', 'M'):     /* Common chunk */
269
            /* Then for the complete header info */
270
12.5k
            st->nb_frames = get_aiff_header(s, size, version);
271
12.5k
            if (st->nb_frames < 0)
272
231
                return st->nb_frames;
273
12.2k
            if (offset > 0) // COMM is after SSND
274
2
                goto got_sound;
275
12.2k
            break;
276
16.4k
        case MKTAG('I', 'D', '3', ' '):
277
16.4k
            position = avio_tell(pb);
278
16.4k
            ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, size);
279
16.4k
            if (id3v2_extra_meta)
280
2.74k
                if ((ret = ff_id3v2_parse_apic(s, id3v2_extra_meta)) < 0 ||
281
2.74k
                    (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
16.4k
            ff_id3v2_free_extra_meta(&id3v2_extra_meta);
286
16.4k
            if (position + size > avio_tell(pb))
287
12.6k
                avio_skip(pb, position + size - avio_tell(pb));
288
16.4k
            break;
289
202
        case MKTAG('F', 'V', 'E', 'R'):     /* Version chunk */
290
202
            version = avio_rb32(pb);
291
202
            break;
292
536
        case MKTAG('N', 'A', 'M', 'E'):     /* Sample name chunk */
293
536
            get_meta(s, "title"    , size);
294
536
            break;
295
106
        case MKTAG('A', 'U', 'T', 'H'):     /* Author chunk */
296
106
            get_meta(s, "author"   , size);
297
106
            break;
298
935
        case MKTAG('(', 'c', ')', ' '):     /* Copyright chunk */
299
935
            get_meta(s, "copyright", size);
300
935
            break;
301
85
        case MKTAG('A', 'N', 'N', 'O'):     /* Annotation chunk */
302
85
            get_meta(s, "comment"  , size);
303
85
            break;
304
1.07k
        case MKTAG('S', 'S', 'N', 'D'):     /* Sampled sound chunk */
305
1.07k
            if (size < 8)
306
4
                return AVERROR_INVALIDDATA;
307
1.07k
            aiff->data_end = avio_tell(pb) + size;
308
1.07k
            offset = avio_rb32(pb);      /* Offset of sound data */
309
1.07k
            avio_rb32(pb);               /* BlockSize... don't care */
310
1.07k
            offset += avio_tell(pb);    /* Compute absolute data offset */
311
1.07k
            if (st->codecpar->block_align && !(pb->seekable & AVIO_SEEKABLE_NORMAL))    /* Assume COMM already parsed */
312
661
                goto got_sound;
313
409
            if (!(pb->seekable & AVIO_SEEKABLE_NORMAL)) {
314
18
                av_log(s, AV_LOG_ERROR, "file is not seekable\n");
315
18
                return -1;
316
18
            }
317
391
            avio_skip(pb, size - 8);
318
391
            break;
319
3.11k
        case MKTAG('w', 'a', 'v', 'e'):
320
3.11k
            if ((uint64_t)size > (1<<30))
321
3
                return AVERROR_INVALIDDATA;
322
3.11k
            if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
323
69
                return ret;
324
3.04k
            if (   (st->codecpar->codec_id == AV_CODEC_ID_QDMC || st->codecpar->codec_id == AV_CODEC_ID_QDM2)
325
1.79k
                && size>=12*4 && !st->codecpar->block_align) {
326
1.07k
                st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
327
1.07k
                aiff->block_duration = AV_RB32(st->codecpar->extradata+9*4);
328
1.97k
            } else if (st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
329
846
                char rate = 0;
330
846
                if (size >= 25)
331
521
                    rate = st->codecpar->extradata[24];
332
846
                switch (rate) {
333
67
                case 'H': // RATE_HALF
334
67
                    st->codecpar->block_align = 17;
335
67
                    break;
336
1
                case 'F': // RATE_FULL
337
779
                default:
338
779
                    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.04k
            break;
345
4.30k
        case MKTAG('C','H','A','N'):
346
4.30k
            if ((ret = ff_mov_read_chan(s, pb, st, size)) < 0)
347
244
                return ret;
348
4.05k
            break;
349
4.05k
        case MKTAG('A','P','C','M'): /* XA ADPCM compressed sound chunk */
350
352
            st->codecpar->codec_id = AV_CODEC_ID_ADPCM_XA;
351
352
            aiff->data_end = avio_tell(pb) + size;
352
352
            offset = avio_tell(pb) + 8;
353
            /* This field is unknown and its data seems to be irrelevant */
354
352
            avio_rb32(pb);
355
352
            st->codecpar->block_align = avio_rb32(pb);
356
357
352
            goto got_sound;
358
0
            break;
359
221
        case MKTAG('A','P','P','L'):
360
221
            if (size > 4) {
361
168
                uint32_t chunk = avio_rl32(pb);
362
363
168
                size -= 4;
364
168
                if (chunk == MKTAG('s','t','o','c')) {
365
99
                    int len = avio_r8(pb);
366
367
99
                    size--;
368
99
                    if (len == 11 && size > 11) {
369
64
                        uint8_t chunk[11];
370
371
64
                        ret = avio_read(pb, chunk, 11);
372
64
                        if (ret > 0)
373
63
                            size -= ret;
374
64
                        if (!memcmp(chunk, "VADPCMCODES", sizeof(chunk))) {
375
16
                            if ((ret = ff_get_extradata(s, st->codecpar, pb, size)) < 0)
376
16
                                return ret;
377
0
                            size -= ret;
378
0
                        }
379
64
                    }
380
99
                }
381
168
            }
382
205
            avio_skip(pb, size);
383
205
            break;
384
1.55k
        case 0:
385
1.55k
            if (offset > 0 && st->codecpar->block_align) // COMM && SSND
386
34
                goto got_sound;
387
6.12k
        default: /* Jump */
388
6.12k
            avio_skip(pb, size);
389
46.0k
        }
390
391
        /* Skip required padding byte for odd-sized chunks. */
392
44.4k
        if (size & 1) {
393
24.7k
            filesize--;
394
24.7k
            avio_skip(pb, 1);
395
24.7k
        }
396
44.4k
    }
397
398
2.63k
    ret = ff_replaygain_export(st, s->metadata);
399
2.63k
    if (ret < 0)
400
0
        return ret;
401
402
3.68k
got_sound:
403
3.68k
    if (!st->codecpar->block_align && st->codecpar->codec_id == AV_CODEC_ID_QCELP) {
404
24
        av_log(s, AV_LOG_WARNING, "qcelp without wave chunk, assuming full rate\n");
405
24
        st->codecpar->block_align = 35;
406
3.65k
    } else if (st->codecpar->block_align <= 0) {
407
1.39k
        av_log(s, AV_LOG_ERROR, "could not find COMM tag or invalid block_align value\n");
408
1.39k
        return AVERROR_INVALIDDATA;
409
1.39k
    }
410
2.28k
    if (aiff->block_duration < 0)
411
7
        return AVERROR_INVALIDDATA;
412
413
    /* Now positioned, get the sound data start and end */
414
2.28k
    avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
415
2.28k
    st->start_time = 0;
416
2.28k
    st->duration = st->nb_frames * aiff->block_duration;
417
418
    /* Position the stream at the first block */
419
2.28k
    avio_seek(pb, offset, SEEK_SET);
420
421
2.28k
    return 0;
422
2.28k
}
423
424
7.96k
#define MAX_SIZE 4096
425
426
static int aiff_read_packet(AVFormatContext *s,
427
                            AVPacket *pkt)
428
1.58M
{
429
1.58M
    AVStream *st = s->streams[0];
430
1.58M
    AIFFInputContext *aiff = s->priv_data;
431
1.58M
    int64_t max_size;
432
1.58M
    int res, size;
433
434
    /* calculate size of remaining data */
435
1.58M
    max_size = aiff->data_end - avio_tell(s->pb);
436
1.58M
    if (max_size <= 0)
437
2.20k
        return AVERROR_EOF;
438
439
1.57M
    if (!st->codecpar->block_align) {
440
82
        av_log(s, AV_LOG_ERROR, "block_align not set\n");
441
82
        return AVERROR_INVALIDDATA;
442
82
    }
443
444
    /* Now for that packet */
445
1.57M
    switch (st->codecpar->codec_id) {
446
300
    case AV_CODEC_ID_ADPCM_IMA_QT:
447
779
    case AV_CODEC_ID_GSM:
448
1.57M
    case AV_CODEC_ID_QDM2:
449
1.57M
    case AV_CODEC_ID_QCELP:
450
1.57M
        size = st->codecpar->block_align;
451
1.57M
        break;
452
3.98k
    default:
453
3.98k
        size = st->codecpar->block_align ? (MAX_SIZE / st->codecpar->block_align) * st->codecpar->block_align : MAX_SIZE;
454
3.98k
        if (!size)
455
49
            return AVERROR_INVALIDDATA;
456
1.57M
    }
457
1.57M
    size = FFMIN(max_size, size);
458
1.57M
    res = av_get_packet(s->pb, pkt, size);
459
1.57M
    if (res < 0)
460
1.91k
        return res;
461
462
1.57M
    if (size >= st->codecpar->block_align)
463
1.57M
        pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
464
    /* Only one stream in an AIFF file */
465
1.57M
    pkt->stream_index = 0;
466
1.57M
    pkt->duration     = (res / st->codecpar->block_align) * (int64_t) aiff->block_duration;
467
1.57M
    return 0;
468
1.57M
}
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
};