Coverage Report

Created: 2026-07-25 07:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavformat/tta.c
Line
Count
Source
1
/*
2
 * TTA demuxer
3
 * Copyright (c) 2006 Alex Beregszaszi
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/crc.h"
23
#include "libavutil/dict.h"
24
#include "libavutil/intreadwrite.h"
25
26
#include "apetag.h"
27
#include "avformat.h"
28
#include "avio_internal.h"
29
#include "demux.h"
30
#include "internal.h"
31
#include "id3v1.h"
32
33
typedef struct TTAContext {
34
    int totalframes, currentframe;
35
    int frame_size;
36
    int last_frame_size;
37
} TTAContext;
38
39
static int tta_probe(const AVProbeData *p)
40
967k
{
41
967k
    if (AV_RL32(&p->buf[0]) == MKTAG('T', 'T', 'A', '1') &&
42
1.36k
        (AV_RL16(&p->buf[4]) == 1 || AV_RL16(&p->buf[4]) == 2) &&
43
1.17k
        AV_RL16(&p->buf[6]) > 0 &&
44
663
        AV_RL16(&p->buf[8]) > 0 &&
45
502
        AV_RL32(&p->buf[10]) > 0)
46
319
        return AVPROBE_SCORE_EXTENSION + 30;
47
967k
    return 0;
48
967k
}
49
50
static int tta_read_header(AVFormatContext *s)
51
7.09k
{
52
7.09k
    TTAContext *c = s->priv_data;
53
7.09k
    AVStream *st;
54
7.09k
    int64_t framepos;
55
7.09k
    uint8_t header[22];
56
57
7.09k
    ff_id3v1_read(s);
58
59
7.09k
    int ret = ffio_read_size(s->pb, header, sizeof(header));
60
7.09k
    if (ret < 0)
61
4.95k
        return ret;
62
63
2.13k
    if (AV_RL32(header) != MKTAG('T', 'T', 'A', '1'))
64
135
        return AVERROR_INVALIDDATA;
65
66
1.99k
    int channels   = AV_RL16(header +  6);
67
1.99k
    int bps        = AV_RL16(header +  8);
68
1.99k
    int samplerate = AV_RL32(header + 10);
69
1.99k
    if(samplerate <= 0 || samplerate > 1000000){
70
42
        av_log(s, AV_LOG_ERROR, "nonsense samplerate\n");
71
42
        return AVERROR_INVALIDDATA;
72
42
    }
73
74
1.95k
    uint32_t nb_samples = AV_RL32(header + 14);
75
1.95k
    if (!nb_samples) {
76
3
        av_log(s, AV_LOG_ERROR, "invalid number of samples\n");
77
3
        return AVERROR_INVALIDDATA;
78
3
    }
79
80
1.95k
    uint32_t crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE_LE), UINT32_MAX, header, 18) ^ UINT32_MAX;
81
1.95k
    if (crc != AV_RL32(header + 18) && s->error_recognition & AV_EF_CRCCHECK) {
82
53
        av_log(s, AV_LOG_ERROR, "Header CRC error\n");
83
53
        return AVERROR_INVALIDDATA;
84
53
    }
85
86
1.90k
    c->frame_size      = samplerate * 256 / 245;
87
1.90k
    c->last_frame_size = nb_samples % c->frame_size;
88
1.90k
    if (!c->last_frame_size)
89
4
        c->last_frame_size = c->frame_size;
90
1.90k
    c->totalframes = nb_samples / c->frame_size + (c->last_frame_size < c->frame_size);
91
1.90k
    c->currentframe = 0;
92
93
1.90k
    if(c->totalframes >= (INT_MAX - 4)/sizeof(uint32_t) || c->totalframes <= 0){
94
1
        av_log(s, AV_LOG_ERROR, "totalframes %d invalid\n", c->totalframes);
95
1
        return AVERROR_INVALIDDATA;
96
1
    }
97
98
1.90k
    st = avformat_new_stream(s, NULL);
99
1.90k
    if (!st)
100
0
        return AVERROR(ENOMEM);
101
102
1.90k
    avpriv_set_pts_info(st, 64, 1, samplerate);
103
1.90k
    st->start_time = 0;
104
1.90k
    st->duration = nb_samples;
105
106
1.90k
    ret = ff_alloc_extradata(st->codecpar, sizeof(header));
107
1.90k
    if (ret < 0)
108
0
        return ret;
109
1.90k
    memcpy(st->codecpar->extradata, header, sizeof(header));
110
111
1.90k
    framepos = avio_tell(s->pb);
112
1.90k
    if (framepos < 0)
113
0
        return framepos;
114
1.90k
    framepos += 4 * c->totalframes + 4;
115
116
1.90k
    ffio_init_checksum(s->pb, ff_crcEDB88320_update, UINT32_MAX);
117
1.64M
    for (int i = 0; i < c->totalframes; i++) {
118
1.63M
        uint32_t size = avio_rl32(s->pb);
119
1.63M
        int r;
120
1.63M
        if (avio_feof(s->pb))
121
165
            return AVERROR_INVALIDDATA;
122
1.63M
        if ((r = av_add_index_entry(st, framepos, i * (int64_t)c->frame_size, size, 0,
123
1.63M
                                    AVINDEX_KEYFRAME)) < 0)
124
41
            return r;
125
1.63M
        framepos += size;
126
1.63M
    }
127
1.69k
    crc = ffio_get_checksum(s->pb) ^ UINT32_MAX;
128
1.69k
    if (crc != avio_rl32(s->pb) && s->error_recognition & AV_EF_CRCCHECK) {
129
55
        av_log(s, AV_LOG_ERROR, "Seek table CRC error\n");
130
55
        return AVERROR_INVALIDDATA;
131
55
    }
132
133
1.63k
    st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
134
1.63k
    st->codecpar->codec_id = AV_CODEC_ID_TTA;
135
1.63k
    st->codecpar->ch_layout.nb_channels = channels;
136
1.63k
    st->codecpar->sample_rate = samplerate;
137
1.63k
    st->codecpar->bits_per_coded_sample = bps;
138
139
1.63k
    if (s->pb->seekable & AVIO_SEEKABLE_NORMAL) {
140
792
        int64_t pos = avio_tell(s->pb);
141
792
        ff_ape_parse_tag(s);
142
792
        avio_seek(s->pb, pos, SEEK_SET);
143
792
    }
144
145
1.63k
    return 0;
146
1.69k
}
147
148
static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
149
3.78k
{
150
3.78k
    TTAContext *c = s->priv_data;
151
3.78k
    AVStream *st = s->streams[0];
152
3.78k
    FFStream *const sti = ffstream(st);
153
3.78k
    int size, ret;
154
155
    // FIXME!
156
3.78k
    if (c->currentframe >= c->totalframes)
157
415
        return AVERROR_EOF;
158
159
3.36k
    if (sti->nb_index_entries < c->totalframes) {
160
0
        av_log(s, AV_LOG_ERROR, "Index entry disappeared\n");
161
0
        return AVERROR_INVALIDDATA;
162
0
    }
163
164
3.36k
    size = sti->index_entries[c->currentframe].size;
165
166
3.36k
    ret = av_get_packet(s->pb, pkt, size);
167
3.36k
    pkt->dts = sti->index_entries[c->currentframe++].timestamp;
168
3.36k
    pkt->duration = c->currentframe == c->totalframes ? c->last_frame_size :
169
3.36k
                                                        c->frame_size;
170
3.36k
    return ret;
171
3.36k
}
172
173
static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
174
0
{
175
0
    TTAContext *c = s->priv_data;
176
0
    AVStream *st = s->streams[stream_index];
177
0
    int index = av_index_search_timestamp(st, timestamp, flags);
178
0
    if (index < 0)
179
0
        return -1;
180
0
    if (avio_seek(s->pb, ffstream(st)->index_entries[index].pos, SEEK_SET) < 0)
181
0
        return -1;
182
183
0
    c->currentframe = index;
184
185
0
    return 0;
186
0
}
187
188
const FFInputFormat ff_tta_demuxer = {
189
    .p.name         = "tta",
190
    .p.long_name    = NULL_IF_CONFIG_SMALL("TTA (True Audio)"),
191
    .p.extensions   = "tta",
192
    .priv_data_size = sizeof(TTAContext),
193
    .flags_internal = FF_INFMT_FLAG_ID3V2_AUTO,
194
    .read_probe     = tta_probe,
195
    .read_header    = tta_read_header,
196
    .read_packet    = tta_read_packet,
197
    .read_seek      = tta_read_seek,
198
};