FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/takdec.c
Date: 2025-04-25 22:50:00
Exec Total Coverage
Lines: 81 118 68.6%
Functions: 4 4 100.0%
Branches: 30 57 52.6%

Line Branch Exec Source
1 /*
2 * Raw TAK demuxer
3 * Copyright (c) 2012 Paul B Mahol
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/mem.h"
24
25 #define BITSTREAM_READER_LE
26 #include "libavcodec/tak.h"
27
28 #include "apetag.h"
29 #include "avformat.h"
30 #include "avio_internal.h"
31 #include "demux.h"
32 #include "internal.h"
33 #include "rawdec.h"
34
35 typedef struct TAKDemuxContext {
36 FFRawDemuxerContext rawctx;
37 int mlast_frame;
38 int64_t data_end;
39 } TAKDemuxContext;
40
41 7211 static int tak_probe(const AVProbeData *p)
42 {
43
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 7210 times.
7211 if (!memcmp(p->buf, "tBaK", 4))
44 1 return AVPROBE_SCORE_EXTENSION;
45 7210 return 0;
46 }
47
48 3 static unsigned long tak_check_crc(unsigned long checksum, const uint8_t *buf,
49 unsigned int len)
50 {
51 3 return av_crc(av_crc_get_table(AV_CRC_24_IEEE), checksum, buf, len);
52 }
53
54 1 static int tak_read_header(AVFormatContext *s)
55 {
56 1 TAKDemuxContext *tc = s->priv_data;
57 1 AVIOContext *pb = s->pb;
58 GetBitContext gb;
59 AVStream *st;
60 1 uint8_t *buffer = NULL;
61 int ret;
62
63 1 st = avformat_new_stream(s, 0);
64
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!st)
65 return AVERROR(ENOMEM);
66
67 1 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
68 1 st->codecpar->codec_id = AV_CODEC_ID_TAK;
69 1 ffstream(st)->need_parsing = AVSTREAM_PARSE_FULL_RAW;
70
71 1 tc->mlast_frame = 0;
72
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
1 if (avio_rl32(pb) != MKTAG('t', 'B', 'a', 'K')) {
73 avio_seek(pb, -4, SEEK_CUR);
74 return 0;
75 }
76
77
1/2
✓ Branch 1 taken 5 times.
✗ Branch 2 not taken.
5 while (!avio_feof(pb)) {
78 enum TAKMetaDataType type;
79 int size;
80
81 5 type = avio_r8(pb) & 0x7f;
82 5 size = avio_rl24(pb);
83
84
4/5
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 1 times.
5 switch (type) {
85 1 case TAK_METADATA_STREAMINFO:
86
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (st->codecpar->extradata)
87 return AVERROR_INVALIDDATA;
88 case TAK_METADATA_LAST_FRAME:
89 case TAK_METADATA_ENCODER:
90
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (size <= 3)
91 return AVERROR_INVALIDDATA;
92
93 3 buffer = av_malloc(size - 3 + AV_INPUT_BUFFER_PADDING_SIZE);
94
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (!buffer)
95 return AVERROR(ENOMEM);
96 3 memset(buffer + size - 3, 0, AV_INPUT_BUFFER_PADDING_SIZE);
97
98 3 ffio_init_checksum(pb, tak_check_crc, 0xCE04B7U);
99 3 ret = ffio_read_size(pb, buffer, size - 3);
100
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (ret < 0) {
101 av_freep(&buffer);
102 return ret;
103 }
104
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 3 times.
3 if (ffio_get_checksum(s->pb) != avio_rb24(pb)) {
105 av_log(s, AV_LOG_ERROR, "%d metadata block CRC error.\n", type);
106 if (s->error_recognition & AV_EF_EXPLODE) {
107 av_freep(&buffer);
108 return AVERROR_INVALIDDATA;
109 }
110 }
111
112 3 break;
113 case TAK_METADATA_MD5: {
114 uint8_t md5[16];
115 char md5_hex[2 * sizeof(md5) + 1];
116
117 if (size != 19)
118 return AVERROR_INVALIDDATA;
119 ffio_init_checksum(pb, tak_check_crc, 0xCE04B7U);
120 ret = ffio_read_size(pb, md5, 16);
121 if (ret < 0)
122 return ret;
123 if (ffio_get_checksum(s->pb) != avio_rb24(pb)) {
124 av_log(s, AV_LOG_ERROR, "MD5 metadata block CRC error.\n");
125 if (s->error_recognition & AV_EF_EXPLODE)
126 return AVERROR_INVALIDDATA;
127 }
128
129 ff_data_to_hex(md5_hex, md5, sizeof(md5), 1);
130 av_log(s, AV_LOG_VERBOSE, "MD5=%s\n", md5_hex);
131 break;
132 }
133 1 case TAK_METADATA_END: {
134 1 int64_t curpos = avio_tell(pb);
135
136
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
137 1 ff_ape_parse_tag(s);
138 1 avio_seek(pb, curpos, SEEK_SET);
139 }
140
141 1 tc->data_end += curpos;
142 1 return 0;
143 }
144 1 default:
145 1 ret = avio_skip(pb, size);
146
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (ret < 0)
147 return ret;
148 }
149
150
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 3 times.
4 if (type == TAK_METADATA_STREAMINFO) {
151 TAKStreamInfo ti;
152
153 1 ret = avpriv_tak_parse_streaminfo(&ti, buffer, size -3);
154
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (ret < 0)
155 goto end;
156
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (ti.samples > 0)
157 1 st->duration = ti.samples;
158 1 st->codecpar->bits_per_coded_sample = ti.bps;
159
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (ti.ch_layout)
160 av_channel_layout_from_mask(&st->codecpar->ch_layout, ti.ch_layout);
161 else {
162 1 av_channel_layout_uninit(&st->codecpar->ch_layout);
163 1 st->codecpar->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
164 1 st->codecpar->ch_layout.nb_channels = ti.channels;
165 }
166 1 st->codecpar->sample_rate = ti.sample_rate;
167 1 st->start_time = 0;
168 1 avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
169 1 st->codecpar->extradata = buffer;
170 1 st->codecpar->extradata_size = size - 3;
171 1 buffer = NULL;
172
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
3 } else if (type == TAK_METADATA_LAST_FRAME) {
173
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (size != 11) {
174 ret = AVERROR_INVALIDDATA;
175 goto end;
176 }
177 1 init_get_bits8(&gb, buffer, size - 3);
178 1 tc->mlast_frame = 1;
179 1 tc->data_end = get_bits64(&gb, TAK_LAST_FRAME_POS_BITS) +
180 1 get_bits(&gb, TAK_LAST_FRAME_SIZE_BITS);
181 1 av_freep(&buffer);
182
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 } else if (type == TAK_METADATA_ENCODER) {
183 1 av_log(s, AV_LOG_VERBOSE, "encoder version: %0X\n",
184 1 AV_RL24(buffer));
185 1 av_freep(&buffer);
186 }
187 }
188
189 return AVERROR_EOF;
190 end:
191 av_freep(&buffer);
192 return ret;
193 }
194
195 989 static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
196 {
197 989 TAKDemuxContext *tc = s->priv_data;
198 int ret;
199
200
1/2
✓ Branch 0 taken 989 times.
✗ Branch 1 not taken.
989 if (tc->mlast_frame) {
201 989 AVIOContext *pb = s->pb;
202 int64_t size, left;
203
204 989 left = tc->data_end - avio_tell(pb);
205 989 size = FFMIN(left, 1024);
206
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 987 times.
989 if (size <= 0)
207 2 return AVERROR_EOF;
208
209 987 ret = av_get_packet(pb, pkt, size);
210
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 987 times.
987 if (ret < 0)
211 return ret;
212
213 987 pkt->stream_index = 0;
214 } else {
215 ret = ff_raw_read_partial_packet(s, pkt);
216 }
217
218 987 return ret;
219 }
220
221 const FFInputFormat ff_tak_demuxer = {
222 .p.name = "tak",
223 .p.long_name = NULL_IF_CONFIG_SMALL("raw TAK"),
224 .p.flags = AVFMT_GENERIC_INDEX,
225 .p.extensions = "tak",
226 .p.priv_class = &ff_raw_demuxer_class,
227 .priv_data_size = sizeof(TAKDemuxContext),
228 .read_probe = tak_probe,
229 .read_header = tak_read_header,
230 .read_packet = raw_read_packet,
231 .raw_codec_id = AV_CODEC_ID_TAK,
232 };
233