FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/apac.c
Date: 2026-09-26 14:26:21
Exec Total Coverage
Lines: 0 141 0.0%
Functions: 0 4 0.0%
Branches: 0 86 0.0%

Line Branch Exec Source
1 /*
2 * APAC audio decoder
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include "libavutil/audio_fifo.h"
22 #include "libavutil/mem.h"
23 #include "avcodec.h"
24 #include "codec_internal.h"
25 #include "decode.h"
26 #include "get_bits.h"
27
28 typedef struct ChContext {
29 int have_code;
30 int last_sample;
31 int last_delta;
32 int bit_length;
33 int block_length;
34 uint8_t block[32 * 2];
35 AVAudioFifo *samples;
36 } ChContext;
37
38 typedef struct APACContext {
39 GetBitContext gb;
40 int skip;
41
42 int cur_ch;
43 ChContext ch[2];
44
45 uint8_t *bitstream;
46 int64_t max_framesize;
47 int bitstream_size;
48 int bitstream_index;
49 } APACContext;
50
51 ✗ static av_cold int apac_close(AVCodecContext *avctx)
52 {
53 ✗ APACContext *s = avctx->priv_data;
54
55 ✗ av_freep(&s->bitstream);
56 ✗ s->bitstream_size = 0;
57
58 ✗ for (int ch = 0; ch < 2; ch++) {
59 ✗ ChContext *c = &s->ch[ch];
60
61 ✗ av_audio_fifo_free(c->samples);
62 }
63
64 ✗ return 0;
65 }
66
67 ✗ static av_cold int apac_init(AVCodecContext *avctx)
68 {
69 ✗ APACContext *s = avctx->priv_data;
70
71 ✗ if (avctx->bits_per_coded_sample > 8)
72 ✗ avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
73 else
74 ✗ avctx->sample_fmt = AV_SAMPLE_FMT_U8P;
75
76 ✗ if (avctx->ch_layout.nb_channels < 1 ||
77 ✗ avctx->ch_layout.nb_channels > 2 ||
78 ✗ avctx->bits_per_coded_sample < 8 ||
79 ✗ avctx->bits_per_coded_sample > 16
80 )
81 ✗ return AVERROR_INVALIDDATA;
82
83 ✗ for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++) {
84 ✗ ChContext *c = &s->ch[ch];
85
86 ✗ c->bit_length = avctx->bits_per_coded_sample;
87 ✗ c->block_length = 8;
88 ✗ c->have_code = 0;
89 ✗ c->samples = av_audio_fifo_alloc(avctx->sample_fmt, 1, 1024);
90 ✗ if (!c->samples)
91 ✗ return AVERROR(ENOMEM);
92 }
93
94 ✗ s->max_framesize = 1024;
95 ✗ s->bitstream = av_realloc_f(s->bitstream, s->max_framesize + AV_INPUT_BUFFER_PADDING_SIZE, sizeof(*s->bitstream));
96 ✗ if (!s->bitstream)
97 ✗ return AVERROR(ENOMEM);
98
99 ✗ return 0;
100 }
101
102 ✗ static int get_code(ChContext *c, GetBitContext *gb)
103 {
104 ✗ if (get_bits1(gb)) {
105 ✗ int code = get_bits(gb, 2);
106
107 ✗ switch (code) {
108 ✗ case 0:
109 ✗ c->bit_length--;
110 ✗ break;
111 ✗ case 1:
112 ✗ c->bit_length++;
113 ✗ break;
114 ✗ case 2:
115 ✗ c->bit_length = get_bits(gb, 5);
116 ✗ break;
117 ✗ case 3:
118 ✗ c->block_length = get_bits(gb, 4);
119 ✗ return 1;
120 }
121 }
122
123 ✗ return 0;
124 }
125
126 ✗ static int apac_decode(AVCodecContext *avctx, AVFrame *frame,
127 int *got_frame_ptr, AVPacket *pkt)
128 {
129 ✗ APACContext *s = avctx->priv_data;
130 ✗ GetBitContext *gb = &s->gb;
131 int ret, n, buf_size, input_buf_size;
132 uint8_t *buf;
133 int nb_samples;
134
135 ✗ if (!pkt->size && s->bitstream_size <= 0) {
136 ✗ *got_frame_ptr = 0;
137 ✗ return 0;
138 }
139
140 ✗ buf_size = pkt->size;
141 ✗ input_buf_size = buf_size;
142
143 ✗ if ((int64_t)s->bitstream_size + buf_size > INT_MAX / (16 * 8))
144 ✗ return AVERROR_INVALIDDATA;
145
146 ✗ if (s->bitstream_index > 0) {
147 ✗ if (s->bitstream_size > 0)
148 ✗ memmove(s->bitstream, &s->bitstream[s->bitstream_index], s->bitstream_size);
149 ✗ s->bitstream_index = 0;
150 }
151
152 ✗ if (s->bitstream_index + s->bitstream_size + buf_size > s->max_framesize) {
153 ✗ s->bitstream = av_realloc_f(s->bitstream, s->bitstream_index +
154 ✗ s->bitstream_size +
155 ✗ buf_size + AV_INPUT_BUFFER_PADDING_SIZE,
156 sizeof(*s->bitstream));
157 ✗ if (!s->bitstream)
158 ✗ return AVERROR(ENOMEM);
159 ✗ s->max_framesize = s->bitstream_index + s->bitstream_size + buf_size;
160 }
161 ✗ if (pkt->data)
162 ✗ memcpy(&s->bitstream[s->bitstream_index + s->bitstream_size], pkt->data, buf_size);
163 ✗ buf = &s->bitstream[s->bitstream_index];
164 ✗ buf_size += s->bitstream_size;
165 ✗ s->bitstream_size = buf_size;
166 ✗ memset(buf + buf_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
167
168 ✗ frame->nb_samples = s->bitstream_size * 16 * 8;
169 ✗ if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
170 ✗ return ret;
171
172 ✗ if ((ret = init_get_bits8(gb, buf, buf_size)) < 0)
173 ✗ return ret;
174
175 ✗ skip_bits(gb, s->skip);
176 ✗ s->skip = 0;
177
178 ✗ while (get_bits_left(gb) > 0) {
179 ✗ for (int ch = s->cur_ch; ch < avctx->ch_layout.nb_channels; ch++) {
180 ✗ ChContext *c = &s->ch[ch];
181 ✗ int16_t *dst16 = (int16_t *)c->block;
182 ✗ uint8_t *dst8 = (uint8_t *)c->block;
183 void *samples[4];
184
185 ✗ samples[0] = &c->block[0];
186 ✗ if (get_bits_left(gb) < 16 && pkt->size) {
187 ✗ s->cur_ch = ch;
188 ✗ goto end;
189 }
190
191 ✗ if (!c->have_code && get_code(c, gb))
192 ✗ get_code(c, gb);
193 ✗ c->have_code = 0;
194
195 ✗ if (c->block_length <= 0)
196 ✗ continue;
197
198 ✗ if (c->bit_length < 0 ||
199 ✗ c->bit_length > 17) {
200 ✗ c->bit_length = avctx->bits_per_coded_sample;
201 ✗ s->bitstream_index = 0;
202 ✗ s->bitstream_size = 0;
203 ✗ return AVERROR_INVALIDDATA;
204 }
205
206 ✗ if (get_bits_left(gb) < c->block_length * c->bit_length) {
207 ✗ if (pkt->size) {
208 ✗ c->have_code = 1;
209 ✗ s->cur_ch = ch;
210 ✗ goto end;
211 } else {
212 ✗ break;
213 }
214 }
215
216 ✗ for (int i = 0; i < c->block_length; i++) {
217 ✗ int val = get_bits_long(gb, c->bit_length);
218 ✗ unsigned delta = (val & 1) ? ~(val >> 1) : (val >> 1);
219 int sample;
220
221 ✗ delta += c->last_delta;
222 ✗ sample = c->last_sample + delta;
223 ✗ c->last_delta = delta;
224 ✗ c->last_sample = sample;
225
226 ✗ switch (avctx->sample_fmt) {
227 ✗ case AV_SAMPLE_FMT_S16P:
228 ✗ dst16[i] = sample;
229 ✗ break;
230 ✗ case AV_SAMPLE_FMT_U8P:
231 ✗ dst8[i] = sample;
232 ✗ break;
233 }
234 }
235
236 ✗ av_audio_fifo_write(c->samples, samples, c->block_length);
237 }
238
239 ✗ s->cur_ch = 0;
240 }
241 ✗ end:
242 ✗ nb_samples = frame->nb_samples;
243 ✗ for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++)
244 ✗ nb_samples = FFMIN(av_audio_fifo_size(s->ch[ch].samples), nb_samples);
245
246 ✗ frame->nb_samples = nb_samples;
247 ✗ for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++) {
248 ✗ void *samples[1] = { frame->extended_data[ch] };
249 ✗ av_audio_fifo_read(s->ch[ch].samples, samples, nb_samples);
250 }
251
252 ✗ s->skip = get_bits_count(gb) - 8 * (get_bits_count(gb) / 8);
253 ✗ n = get_bits_count(gb) / 8;
254
255 ✗ if (nb_samples > 0 || pkt->size)
256 ✗ *got_frame_ptr = 1;
257
258 ✗ if (s->bitstream_size > 0) {
259 ✗ s->bitstream_index += n;
260 ✗ s->bitstream_size -= n;
261 ✗ return input_buf_size;
262 }
263 ✗ return n;
264 }
265
266 const FFCodec ff_apac_decoder = {
267 .p.name = "apac",
268 CODEC_LONG_NAME("Marian's A-pac audio"),
269 .p.type = AVMEDIA_TYPE_AUDIO,
270 .p.id = AV_CODEC_ID_APAC,
271 .priv_data_size = sizeof(APACContext),
272 .init = apac_init,
273 FF_CODEC_DECODE_CB(apac_decode),
274 .close = apac_close,
275 .p.capabilities = AV_CODEC_CAP_DELAY |
276 AV_CODEC_CAP_DR1,
277 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
278 };
279