FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/dcaenc.c
Date: 2024-05-11 02:28:20
Exec Total Coverage
Lines: 550 647 85.0%
Functions: 38 43 88.4%
Branches: 318 398 79.9%

Line Branch Exec Source
1 /*
2 * DCA encoder
3 * Copyright (C) 2008-2012 Alexander E. Patrakov
4 * 2010 Benjamin Larsson
5 * 2011 Xiang Wang
6 *
7 * This file is part of FFmpeg.
8 *
9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * FFmpeg is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #include "libavutil/avassert.h"
25 #include "libavutil/channel_layout.h"
26 #include "libavutil/common.h"
27 #include "libavutil/ffmath.h"
28 #include "libavutil/mem.h"
29 #include "libavutil/mem_internal.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/thread.h"
32 #include "libavutil/tx.h"
33 #include "avcodec.h"
34 #include "codec_internal.h"
35 #include "dcaadpcm.h"
36 #include "dcamath.h"
37 #include "dca_core.h"
38 #include "dcadata.h"
39 #include "dcaenc.h"
40 #include "encode.h"
41 #include "put_bits.h"
42
43 #define MAX_CHANNELS 6
44 #define DCA_MAX_FRAME_SIZE 16384
45 #define DCA_HEADER_SIZE 13
46 #define DCA_LFE_SAMPLES 8
47
48 #define DCAENC_SUBBANDS 32
49 #define SUBFRAMES 1
50 #define SUBSUBFRAMES 2
51 #define SUBBAND_SAMPLES (SUBFRAMES * SUBSUBFRAMES * 8)
52 #define AUBANDS 25
53
54 #define COS_T(x) (c->cos_table[(x) & 2047])
55
56 typedef struct CompressionOptions {
57 int adpcm_mode;
58 } CompressionOptions;
59
60 typedef struct DCAEncContext {
61 AVClass *class;
62 PutBitContext pb;
63 DCAADPCMEncContext adpcm_ctx;
64 AVTXContext *mdct;
65 av_tx_fn mdct_fn;
66 CompressionOptions options;
67 int frame_size;
68 int frame_bits;
69 int fullband_channels;
70 int channels;
71 int lfe_channel;
72 int samplerate_index;
73 int bitrate_index;
74 int channel_config;
75 const int32_t *band_interpolation;
76 const int32_t *band_spectrum;
77 int lfe_scale_factor;
78 softfloat lfe_quant;
79 int32_t lfe_peak_cb;
80 const int8_t *channel_order_tab; ///< channel reordering table, lfe and non lfe
81
82 int32_t prediction_mode[MAX_CHANNELS][DCAENC_SUBBANDS];
83 int32_t adpcm_history[MAX_CHANNELS][DCAENC_SUBBANDS][DCA_ADPCM_COEFFS * 2];
84 int32_t history[MAX_CHANNELS][512]; /* This is a circular buffer */
85 int32_t *subband[MAX_CHANNELS][DCAENC_SUBBANDS];
86 int32_t quantized[MAX_CHANNELS][DCAENC_SUBBANDS][SUBBAND_SAMPLES];
87 int32_t peak_cb[MAX_CHANNELS][DCAENC_SUBBANDS];
88 int32_t diff_peak_cb[MAX_CHANNELS][DCAENC_SUBBANDS]; ///< expected peak of residual signal
89 int32_t downsampled_lfe[DCA_LFE_SAMPLES];
90 int32_t masking_curve_cb[SUBSUBFRAMES][256];
91 int32_t bit_allocation_sel[MAX_CHANNELS];
92 int abits[MAX_CHANNELS][DCAENC_SUBBANDS];
93 int scale_factor[MAX_CHANNELS][DCAENC_SUBBANDS];
94 softfloat quant[MAX_CHANNELS][DCAENC_SUBBANDS];
95 int32_t quant_index_sel[MAX_CHANNELS][DCA_CODE_BOOKS];
96 int32_t eff_masking_curve_cb[256];
97 int32_t band_masking_cb[32];
98 int32_t worst_quantization_noise;
99 int32_t worst_noise_ever;
100 int consumed_bits;
101 int consumed_adpcm_bits; ///< Number of bits to transmit ADPCM related info
102
103 int32_t cos_table[2048];
104 int32_t band_interpolation_tab[2][512];
105 int32_t band_spectrum_tab[2][8];
106 int32_t auf[9][AUBANDS][256];
107 int32_t cb_to_add[256];
108 int32_t cb_to_level[2048];
109 int32_t lfe_fir_64i[512];
110 } DCAEncContext;
111
112 /* Transfer function of outer and middle ear, Hz -> dB */
113 115200 static double hom(double f)
114 {
115 115200 double f1 = f / 1000;
116
117 115200 return -3.64 * pow(f1, -0.8)
118 115200 + 6.8 * exp(-0.6 * (f1 - 3.4) * (f1 - 3.4))
119 115200 - 6.0 * exp(-0.15 * (f1 - 8.7) * (f1 - 8.7))
120 115200 - 0.0006 * (f1 * f1) * (f1 * f1);
121 }
122
123 115200 static double gammafilter(int i, double f)
124 {
125 115200 double h = (f - fc[i]) / erb[i];
126
127 115200 h = 1 + h * h;
128 115200 h = 1 / (h * h);
129 115200 return 20 * log10(h);
130 }
131
132 2 static int subband_bufer_alloc(DCAEncContext *c)
133 {
134 int ch, band;
135 2 int32_t *bufer = av_calloc(MAX_CHANNELS * DCAENC_SUBBANDS *
136 (SUBBAND_SAMPLES + DCA_ADPCM_COEFFS),
137 sizeof(int32_t));
138
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (!bufer)
139 return AVERROR(ENOMEM);
140
141 /* we need a place for DCA_ADPCM_COEFF samples from previous frame
142 * to calc prediction coefficients for each subband */
143
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 2 times.
14 for (ch = 0; ch < MAX_CHANNELS; ch++) {
144
2/2
✓ Branch 0 taken 384 times.
✓ Branch 1 taken 12 times.
396 for (band = 0; band < DCAENC_SUBBANDS; band++) {
145 384 c->subband[ch][band] = bufer +
146 384 ch * DCAENC_SUBBANDS * (SUBBAND_SAMPLES + DCA_ADPCM_COEFFS) +
147 384 band * (SUBBAND_SAMPLES + DCA_ADPCM_COEFFS) + DCA_ADPCM_COEFFS;
148 }
149 }
150 2 return 0;
151 }
152
153 2 static void subband_bufer_free(DCAEncContext *c)
154 {
155
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
2 if (c->subband[0][0]) {
156 2 int32_t *bufer = c->subband[0][0] - DCA_ADPCM_COEFFS;
157 2 av_free(bufer);
158 2 c->subband[0][0] = NULL;
159 }
160 2 }
161
162 static uint16_t bitalloc_12_table[DCA_BITALLOC_12_COUNT][12 + 1][2];
163
164 static uint16_t bitalloc_table[DCA_NUM_BITALLOC_CODES][2];
165 static const uint16_t (*bitalloc_tables[DCA_CODE_BOOKS][8])[2];
166
167 106 static av_cold void create_enc_table(uint16_t dst[][2], unsigned count,
168 const uint8_t (**src_tablep)[2])
169 {
170 106 const uint8_t (*src_table)[2] = *src_tablep;
171 106 uint16_t code = 0;
172
173
2/2
✓ Branch 0 taken 4096 times.
✓ Branch 1 taken 106 times.
4202 for (unsigned i = 0; i < count; i++) {
174 4096 unsigned dst_idx = src_table[i][0];
175
176 4096 dst[dst_idx][0] = code >> (16 - src_table[i][1]);
177 4096 dst[dst_idx][1] = src_table[i][1];
178
179 4096 code += 1 << (16 - src_table[i][1]);
180 }
181 106 *src_tablep += count;
182 106 }
183
184 2 static av_cold void dcaenc_init_static_tables(void)
185 {
186 2 uint16_t (*bitalloc_dst)[2] = bitalloc_table;
187 2 const uint8_t (*src_table)[2] = ff_dca_vlc_src_tables;
188
189
2/2
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 2 times.
22 for (unsigned i = 0; i < DCA_CODE_BOOKS; i++) {
190
2/2
✓ Branch 0 taken 96 times.
✓ Branch 1 taken 20 times.
116 for (unsigned j = 0; j < ff_dca_quant_index_group_size[i]; j++) {
191 96 create_enc_table(bitalloc_dst, ff_dca_bitalloc_sizes[i],
192 &src_table);
193 96 bitalloc_tables[i][j] = bitalloc_dst - ff_dca_bitalloc_offsets[i];
194 96 bitalloc_dst += ff_dca_bitalloc_sizes[i];
195 }
196 }
197
198
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 2 times.
12 for (unsigned i = 0; i < DCA_BITALLOC_12_COUNT; i++)
199 10 create_enc_table(&bitalloc_12_table[i][1], 12, &src_table);
200 2 }
201
202 2 static int encode_init(AVCodecContext *avctx)
203 {
204 static AVOnce init_static_once = AV_ONCE_INIT;
205 2 DCAEncContext *c = avctx->priv_data;
206 2 AVChannelLayout layout = avctx->ch_layout;
207 int i, j, k, min_frame_bits;
208 2 float scale = 1.0f;
209 int ret;
210
211
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2 times.
2 if ((ret = subband_bufer_alloc(c)) < 0)
212 return ret;
213
214 2 c->fullband_channels = c->channels = layout.nb_channels;
215
2/4
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
2 c->lfe_channel = (c->channels == 3 || c->channels == 6);
216 2 c->band_interpolation = c->band_interpolation_tab[1];
217 2 c->band_spectrum = c->band_spectrum_tab[1];
218 2 c->worst_quantization_noise = -2047;
219 2 c->worst_noise_ever = -2047;
220 2 c->consumed_adpcm_bits = 0;
221
222
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2 times.
2 if (ff_dcaadpcm_init(&c->adpcm_ctx))
223 return AVERROR(ENOMEM);
224
225
1/6
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
2 switch (layout.nb_channels) {
226 case 1: /* mono */
227 c->channel_config = 0;
228 break;
229 2 case 2: /* stereo */
230 2 c->channel_config = 2;
231 2 break;
232 case 4: /* 2.2 */
233 c->channel_config = 8;
234 break;
235 case 5: /* 5.0 */
236 c->channel_config = 9;
237 break;
238 case 6: /* 5.1 */
239 c->channel_config = 9;
240 break;
241 2 default:
242 av_assert1(!"impossible channel layout");
243 }
244
245
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (c->lfe_channel) {
246 c->fullband_channels--;
247 c->channel_order_tab = channel_reorder_lfe[c->channel_config];
248 } else {
249 2 c->channel_order_tab = channel_reorder_nolfe[c->channel_config];
250 }
251
252
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 2 times.
14 for (i = 0; i < MAX_CHANNELS; i++) {
253
2/2
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 12 times.
132 for (j = 0; j < DCA_CODE_BOOKS; j++) {
254 120 c->quant_index_sel[i][j] = ff_dca_quant_index_group_size[j];
255 }
256 /* 6 - no Huffman */
257 12 c->bit_allocation_sel[i] = 6;
258
259
2/2
✓ Branch 0 taken 384 times.
✓ Branch 1 taken 12 times.
396 for (j = 0; j < DCAENC_SUBBANDS; j++) {
260 /* -1 - no ADPCM */
261 384 c->prediction_mode[i][j] = -1;
262 384 memset(c->adpcm_history[i][j], 0, sizeof(int32_t)*DCA_ADPCM_COEFFS);
263 }
264 }
265
266
1/2
✓ Branch 0 taken 12 times.
✗ Branch 1 not taken.
12 for (i = 0; i < 9; i++) {
267
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 10 times.
12 if (sample_rates[i] == avctx->sample_rate)
268 2 break;
269 }
270
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (i == 9)
271 return AVERROR(EINVAL);
272 2 c->samplerate_index = i;
273
274
2/4
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
2 if (avctx->bit_rate < 32000 || avctx->bit_rate > 3840000) {
275 av_log(avctx, AV_LOG_ERROR, "Bit rate %"PRId64" not supported.", avctx->bit_rate);
276 return AVERROR(EINVAL);
277 }
278
2/2
✓ Branch 0 taken 44 times.
✓ Branch 1 taken 2 times.
46 for (i = 0; ff_dca_bit_rates[i] < avctx->bit_rate; i++)
279 ;
280 2 c->bitrate_index = i;
281 2 c->frame_bits = FFALIGN((avctx->bit_rate * 512 + avctx->sample_rate - 1) / avctx->sample_rate, 32);
282 2 min_frame_bits = 132 + (493 + 28 * 32) * c->fullband_channels + c->lfe_channel * 72;
283
2/4
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
2 if (c->frame_bits < min_frame_bits || c->frame_bits > (DCA_MAX_FRAME_SIZE << 3))
284 return AVERROR(EINVAL);
285
286 2 c->frame_size = (c->frame_bits + 7) / 8;
287
288 2 avctx->frame_size = 32 * SUBBAND_SAMPLES;
289
290
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2 times.
2 if ((ret = av_tx_init(&c->mdct, &c->mdct_fn, AV_TX_INT32_MDCT, 0, 256, &scale, 0)) < 0)
291 return ret;
292
293 /* Init all tables */
294 2 c->cos_table[0] = 0x7fffffff;
295 2 c->cos_table[512] = 0;
296 2 c->cos_table[1024] = -c->cos_table[0];
297
2/2
✓ Branch 0 taken 1022 times.
✓ Branch 1 taken 2 times.
1024 for (i = 1; i < 512; i++) {
298 1022 c->cos_table[i] = (int32_t)(0x7fffffff * cos(M_PI * i / 1024));
299 1022 c->cos_table[1024-i] = -c->cos_table[i];
300 1022 c->cos_table[1024+i] = -c->cos_table[i];
301 1022 c->cos_table[2048-i] = +c->cos_table[i];
302 }
303
304
2/2
✓ Branch 0 taken 4096 times.
✓ Branch 1 taken 2 times.
4098 for (i = 0; i < 2048; i++)
305 4096 c->cb_to_level[i] = (int32_t)(0x7fffffff * ff_exp10(-0.005 * i));
306
307
2/2
✓ Branch 0 taken 64 times.
✓ Branch 1 taken 2 times.
66 for (k = 0; k < 32; k++) {
308
2/2
✓ Branch 0 taken 512 times.
✓ Branch 1 taken 64 times.
576 for (j = 0; j < 8; j++) {
309 512 c->lfe_fir_64i[64 * j + k] = (int32_t)(0xffffff800000ULL * ff_dca_lfe_fir_64[8 * k + j]);
310 512 c->lfe_fir_64i[64 * (7-j) + (63 - k)] = (int32_t)(0xffffff800000ULL * ff_dca_lfe_fir_64[8 * k + j]);
311 }
312 }
313
314
2/2
✓ Branch 0 taken 1024 times.
✓ Branch 1 taken 2 times.
1026 for (i = 0; i < 512; i++) {
315 1024 c->band_interpolation_tab[0][i] = (int32_t)(0x1000000000ULL * ff_dca_fir_32bands_perfect[i]);
316 1024 c->band_interpolation_tab[1][i] = (int32_t)(0x1000000000ULL * ff_dca_fir_32bands_nonperfect[i]);
317 }
318
319
2/2
✓ Branch 0 taken 18 times.
✓ Branch 1 taken 2 times.
20 for (i = 0; i < 9; i++) {
320
2/2
✓ Branch 0 taken 450 times.
✓ Branch 1 taken 18 times.
468 for (j = 0; j < AUBANDS; j++) {
321
2/2
✓ Branch 0 taken 115200 times.
✓ Branch 1 taken 450 times.
115650 for (k = 0; k < 256; k++) {
322 115200 double freq = sample_rates[i] * (k + 0.5) / 512;
323
324 115200 c->auf[i][j][k] = (int32_t)(10 * (hom(freq) + gammafilter(j, freq)));
325 }
326 }
327 }
328
329
2/2
✓ Branch 0 taken 512 times.
✓ Branch 1 taken 2 times.
514 for (i = 0; i < 256; i++) {
330 512 double add = 1 + ff_exp10(-0.01 * i);
331 512 c->cb_to_add[i] = (int32_t)(100 * log10(add));
332 }
333
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 2 times.
18 for (j = 0; j < 8; j++) {
334 16 double accum = 0;
335
2/2
✓ Branch 0 taken 8192 times.
✓ Branch 1 taken 16 times.
8208 for (i = 0; i < 512; i++) {
336
2/2
✓ Branch 0 taken 4096 times.
✓ Branch 1 taken 4096 times.
8192 double reconst = ff_dca_fir_32bands_perfect[i] * ((i & 64) ? (-1) : 1);
337 8192 accum += reconst * cos(2 * M_PI * (i + 0.5 - 256) * (j + 0.5) / 512);
338 }
339 16 c->band_spectrum_tab[0][j] = (int32_t)(200 * log10(accum));
340 }
341
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 2 times.
18 for (j = 0; j < 8; j++) {
342 16 double accum = 0;
343
2/2
✓ Branch 0 taken 8192 times.
✓ Branch 1 taken 16 times.
8208 for (i = 0; i < 512; i++) {
344
2/2
✓ Branch 0 taken 4096 times.
✓ Branch 1 taken 4096 times.
8192 double reconst = ff_dca_fir_32bands_nonperfect[i] * ((i & 64) ? (-1) : 1);
345 8192 accum += reconst * cos(2 * M_PI * (i + 0.5 - 256) * (j + 0.5) / 512);
346 }
347 16 c->band_spectrum_tab[1][j] = (int32_t)(200 * log10(accum));
348 }
349
350 2 ff_thread_once(&init_static_once, dcaenc_init_static_tables);
351 2 return 0;
352 }
353
354 2 static av_cold int encode_close(AVCodecContext *avctx)
355 {
356 2 DCAEncContext *c = avctx->priv_data;
357 2 av_tx_uninit(&c->mdct);
358 2 subband_bufer_free(c);
359 2 ff_dcaadpcm_free(&c->adpcm_ctx);
360
361 2 return 0;
362 }
363
364 1034 static void subband_transform(DCAEncContext *c, const int32_t *input)
365 {
366 int ch, subs, i, k, j;
367
368
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++) {
369 /* History is copied because it is also needed for PSY */
370 int32_t hist[512];
371 2068 int hist_start = 0;
372 2068 const int chi = c->channel_order_tab[ch];
373
374 2068 memcpy(hist, &c->history[ch][0], 512 * sizeof(int32_t));
375
376
2/2
✓ Branch 0 taken 33088 times.
✓ Branch 1 taken 2068 times.
35156 for (subs = 0; subs < SUBBAND_SAMPLES; subs++) {
377 int32_t accum[64];
378 int32_t resp;
379 int band;
380
381 /* Calculate the convolutions at once */
382 33088 memset(accum, 0, 64 * sizeof(int32_t));
383
384 33088 for (k = 0, i = hist_start, j = 0;
385
2/2
✓ Branch 0 taken 8999936 times.
✓ Branch 1 taken 33088 times.
9033024 i < 512; k = (k + 1) & 63, i++, j++)
386 8999936 accum[k] += mul32(hist[i], c->band_interpolation[j]);
387
2/2
✓ Branch 0 taken 7941120 times.
✓ Branch 1 taken 33088 times.
7974208 for (i = 0; i < hist_start; k = (k + 1) & 63, i++, j++)
388 7941120 accum[k] += mul32(hist[i], c->band_interpolation[j]);
389
390
2/2
✓ Branch 0 taken 529408 times.
✓ Branch 1 taken 33088 times.
562496 for (k = 16; k < 32; k++)
391 529408 accum[k] = accum[k] - accum[31 - k];
392
2/2
✓ Branch 0 taken 529408 times.
✓ Branch 1 taken 33088 times.
562496 for (k = 32; k < 48; k++)
393 529408 accum[k] = accum[k] + accum[95 - k];
394
395
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 33088 times.
1091904 for (band = 0; band < 32; band++) {
396 1058816 resp = 0;
397
2/2
✓ Branch 0 taken 33882112 times.
✓ Branch 1 taken 1058816 times.
34940928 for (i = 16; i < 48; i++) {
398 33882112 int s = (2 * band + 1) * (2 * (i + 16) + 1);
399 33882112 resp += mul32(accum[i], COS_T(s << 3)) >> 3;
400 }
401
402
2/2
✓ Branch 0 taken 529408 times.
✓ Branch 1 taken 529408 times.
1058816 c->subband[ch][band][subs] = ((band + 1) & 2) ? -resp : resp;
403 }
404
405 /* Copy in 32 new samples from input */
406
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 33088 times.
1091904 for (i = 0; i < 32; i++)
407 1058816 hist[i + hist_start] = input[(subs * 32 + i) * c->channels + chi];
408
409 33088 hist_start = (hist_start + 32) & 511;
410 }
411 }
412 1034 }
413
414 static void lfe_downsample(DCAEncContext *c, const int32_t *input)
415 {
416 /* FIXME: make 128x LFE downsampling possible */
417 const int lfech = lfe_index[c->channel_config];
418 int i, j, lfes;
419 int32_t hist[512];
420 int32_t accum;
421 int hist_start = 0;
422
423 memcpy(hist, &c->history[c->channels - 1][0], 512 * sizeof(int32_t));
424
425 for (lfes = 0; lfes < DCA_LFE_SAMPLES; lfes++) {
426 /* Calculate the convolution */
427 accum = 0;
428
429 for (i = hist_start, j = 0; i < 512; i++, j++)
430 accum += mul32(hist[i], c->lfe_fir_64i[j]);
431 for (i = 0; i < hist_start; i++, j++)
432 accum += mul32(hist[i], c->lfe_fir_64i[j]);
433
434 c->downsampled_lfe[lfes] = accum;
435
436 /* Copy in 64 new samples from input */
437 for (i = 0; i < 64; i++)
438 hist[i + hist_start] = input[(lfes * 64 + i) * c->channels + lfech];
439
440 hist_start = (hist_start + 64) & 511;
441 }
442 }
443
444 static uint32_t dca_vlc_calc_alloc_bits(const int values[], uint8_t n, uint8_t sel)
445 {
446 uint32_t sum = 0;
447 for (unsigned i = 0; i < n; i++)
448 sum += bitalloc_12_table[sel][values[i]][1];
449 return sum;
450 }
451
452 static void dca_vlc_enc_alloc(PutBitContext *pb, const int values[],
453 uint8_t n, uint8_t sel)
454 {
455 for (unsigned i = 0; i < n; i++)
456 put_bits(pb, bitalloc_12_table[sel][values[i]][1],
457 bitalloc_12_table[sel][values[i]][0]);
458 }
459
460 374950 static uint32_t dca_vlc_calc_quant_bits(const int values[], uint8_t n,
461 uint8_t sel, uint8_t table)
462 {
463 374950 uint32_t sum = 0;
464
2/2
✓ Branch 0 taken 5999200 times.
✓ Branch 1 taken 374950 times.
6374150 for (unsigned i = 0; i < n; i++)
465 5999200 sum += bitalloc_tables[table][sel][values[i]][1];
466 374950 return sum;
467 }
468
469 16068 static void dca_vlc_enc_quant(PutBitContext *pb, const int values[],
470 uint8_t n, uint8_t sel, uint8_t table)
471 {
472
2/2
✓ Branch 0 taken 128544 times.
✓ Branch 1 taken 16068 times.
144612 for (unsigned i = 0; i < n; i++)
473 128544 put_bits(pb, bitalloc_tables[table][sel][values[i]][1],
474 128544 bitalloc_tables[table][sel][values[i]][0]);
475 16068 }
476
477 1124992 static int32_t get_cb(DCAEncContext *c, int32_t in)
478 {
479 1124992 int i, res = 0;
480 1124992 in = FFABS(in);
481
482
2/2
✓ Branch 0 taken 12374912 times.
✓ Branch 1 taken 1124992 times.
13499904 for (i = 1024; i > 0; i >>= 1) {
483
2/2
✓ Branch 0 taken 6580254 times.
✓ Branch 1 taken 5794658 times.
12374912 if (c->cb_to_level[i + res] >= in)
484 6580254 res += i;
485 }
486 1124992 return -res;
487 }
488
489 55058432 static int32_t add_cb(DCAEncContext *c, int32_t a, int32_t b)
490 {
491
2/2
✓ Branch 0 taken 13348140 times.
✓ Branch 1 taken 41710292 times.
55058432 if (a < b)
492 13348140 FFSWAP(int32_t, a, b);
493
494
2/2
✓ Branch 0 taken 31966948 times.
✓ Branch 1 taken 23091484 times.
55058432 if (a - b >= 256)
495 31966948 return a;
496 23091484 return a + c->cb_to_add[a - b];
497 }
498
499 4136 static void calc_power(DCAEncContext *c,
500 const int32_t in[2 * 256], int32_t power[256])
501 {
502 int i;
503 4136 LOCAL_ALIGNED_32(int32_t, data, [512]);
504 4136 LOCAL_ALIGNED_32(int32_t, coeff, [256]);
505
506
2/2
✓ Branch 0 taken 2117632 times.
✓ Branch 1 taken 4136 times.
2121768 for (i = 0; i < 512; i++)
507 2117632 data[i] = norm__(mul32(in[i], 0x3fffffff - (COS_T(4 * i + 2) >> 1)), 4);
508
509 4136 c->mdct_fn(c->mdct, coeff, data, sizeof(int32_t));
510
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 4136 times.
1062952 for (i = 0; i < 256; i++) {
511 1058816 const int32_t cb = get_cb(c, coeff[i]);
512 1058816 power[i] = add_cb(c, cb, cb);
513 }
514 4136 }
515
516 4136 static void adjust_jnd(DCAEncContext *c,
517 const int32_t in[512], int32_t out_cb[256])
518 {
519 int32_t power[256];
520 int32_t out_cb_unnorm[256];
521 int32_t denom;
522 4136 const int32_t ca_cb = -1114;
523 4136 const int32_t cs_cb = 928;
524 4136 const int samplerate_index = c->samplerate_index;
525 int i, j;
526
527 4136 calc_power(c, in, power);
528
529
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 4136 times.
1062952 for (j = 0; j < 256; j++)
530 1058816 out_cb_unnorm[j] = -2047; /* and can only grow */
531
532
2/2
✓ Branch 0 taken 103400 times.
✓ Branch 1 taken 4136 times.
107536 for (i = 0; i < AUBANDS; i++) {
533 103400 denom = ca_cb; /* and can only grow */
534
2/2
✓ Branch 0 taken 26470400 times.
✓ Branch 1 taken 103400 times.
26573800 for (j = 0; j < 256; j++)
535 26470400 denom = add_cb(c, denom, power[j] + c->auf[samplerate_index][i][j]);
536
2/2
✓ Branch 0 taken 26470400 times.
✓ Branch 1 taken 103400 times.
26573800 for (j = 0; j < 256; j++)
537 26470400 out_cb_unnorm[j] = add_cb(c, out_cb_unnorm[j],
538 26470400 -denom + c->auf[samplerate_index][i][j]);
539 }
540
541
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 4136 times.
1062952 for (j = 0; j < 256; j++)
542 1058816 out_cb[j] = add_cb(c, out_cb[j], -out_cb_unnorm[j] - ca_cb - cs_cb);
543 4136 }
544
545 typedef void (*walk_band_t)(DCAEncContext *c, int band1, int band2, int f,
546 int32_t spectrum1, int32_t spectrum2, int channel,
547 int32_t * arg);
548
549 33088 static void walk_band_low(DCAEncContext *c, int band, int channel,
550 walk_band_t walk, int32_t *arg)
551 {
552 int f;
553
554
2/2
✓ Branch 0 taken 1034 times.
✓ Branch 1 taken 32054 times.
33088 if (band == 0) {
555
2/2
✓ Branch 0 taken 4136 times.
✓ Branch 1 taken 1034 times.
5170 for (f = 0; f < 4; f++)
556 4136 walk(c, 0, 0, f, 0, -2047, channel, arg);
557 } else {
558
2/2
✓ Branch 0 taken 256432 times.
✓ Branch 1 taken 32054 times.
288486 for (f = 0; f < 8; f++)
559 256432 walk(c, band, band - 1, 8 * band - 4 + f,
560 256432 c->band_spectrum[7 - f], c->band_spectrum[f], channel, arg);
561 }
562 33088 }
563
564 33088 static void walk_band_high(DCAEncContext *c, int band, int channel,
565 walk_band_t walk, int32_t *arg)
566 {
567 int f;
568
569
2/2
✓ Branch 0 taken 1034 times.
✓ Branch 1 taken 32054 times.
33088 if (band == 31) {
570
2/2
✓ Branch 0 taken 4136 times.
✓ Branch 1 taken 1034 times.
5170 for (f = 0; f < 4; f++)
571 4136 walk(c, 31, 31, 256 - 4 + f, 0, -2047, channel, arg);
572 } else {
573
2/2
✓ Branch 0 taken 256432 times.
✓ Branch 1 taken 32054 times.
288486 for (f = 0; f < 8; f++)
574 256432 walk(c, band, band + 1, 8 * band + 4 + f,
575 256432 c->band_spectrum[f], c->band_spectrum[7 - f], channel, arg);
576 }
577 33088 }
578
579 521136 static void update_band_masking(DCAEncContext *c, int band1, int band2,
580 int f, int32_t spectrum1, int32_t spectrum2,
581 int channel, int32_t * arg)
582 {
583 521136 int32_t value = c->eff_masking_curve_cb[f] - spectrum1;
584
585
2/2
✓ Branch 0 taken 211342 times.
✓ Branch 1 taken 309794 times.
521136 if (value < c->band_masking_cb[band1])
586 211342 c->band_masking_cb[band1] = value;
587 521136 }
588
589 1034 static void calc_masking(DCAEncContext *c, const int32_t *input)
590 {
591 int i, k, band, ch, ssf;
592 int32_t data[512];
593
594
2/2
✓ Branch 0 taken 264704 times.
✓ Branch 1 taken 1034 times.
265738 for (i = 0; i < 256; i++)
595
2/2
✓ Branch 0 taken 529408 times.
✓ Branch 1 taken 264704 times.
794112 for (ssf = 0; ssf < SUBSUBFRAMES; ssf++)
596 529408 c->masking_curve_cb[ssf][i] = -2047;
597
598
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ssf = 0; ssf < SUBSUBFRAMES; ssf++)
599
2/2
✓ Branch 0 taken 4136 times.
✓ Branch 1 taken 2068 times.
6204 for (ch = 0; ch < c->fullband_channels; ch++) {
600 4136 const int chi = c->channel_order_tab[ch];
601
602
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 4136 times.
1062952 for (i = 0, k = 128 + 256 * ssf; k < 512; i++, k++)
603 1058816 data[i] = c->history[ch][k];
604
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 4136 times.
1062952 for (k -= 512; i < 512; i++, k++)
605 1058816 data[i] = input[k * c->channels + chi];
606 4136 adjust_jnd(c, data, c->masking_curve_cb[ssf]);
607 }
608
2/2
✓ Branch 0 taken 264704 times.
✓ Branch 1 taken 1034 times.
265738 for (i = 0; i < 256; i++) {
609 264704 int32_t m = 2048;
610
611
2/2
✓ Branch 0 taken 529408 times.
✓ Branch 1 taken 264704 times.
794112 for (ssf = 0; ssf < SUBSUBFRAMES; ssf++)
612
2/2
✓ Branch 0 taken 386776 times.
✓ Branch 1 taken 142632 times.
529408 if (c->masking_curve_cb[ssf][i] < m)
613 386776 m = c->masking_curve_cb[ssf][i];
614 264704 c->eff_masking_curve_cb[i] = m;
615 }
616
617
2/2
✓ Branch 0 taken 33088 times.
✓ Branch 1 taken 1034 times.
34122 for (band = 0; band < 32; band++) {
618 33088 c->band_masking_cb[band] = 2048;
619 33088 walk_band_low(c, band, 0, update_band_masking, NULL);
620 33088 walk_band_high(c, band, 0, update_band_masking, NULL);
621 }
622 1034 }
623
624 66176 static inline int32_t find_peak(DCAEncContext *c, const int32_t *in, int len)
625 {
626 int sample;
627 66176 int32_t m = 0;
628
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 66176 times.
1124992 for (sample = 0; sample < len; sample++) {
629 1058816 int32_t s = abs(in[sample]);
630
2/2
✓ Branch 0 taken 228656 times.
✓ Branch 1 taken 830160 times.
1058816 if (m < s)
631 228656 m = s;
632 }
633 66176 return get_cb(c, m);
634 }
635
636 1034 static void find_peaks(DCAEncContext *c)
637 {
638 int band, ch;
639
640
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++) {
641
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < 32; band++)
642 66176 c->peak_cb[ch][band] = find_peak(c, c->subband[ch][band],
643 SUBBAND_SAMPLES);
644 }
645
646
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1034 times.
1034 if (c->lfe_channel)
647 c->lfe_peak_cb = find_peak(c, c->downsampled_lfe, DCA_LFE_SAMPLES);
648 1034 }
649
650 static void adpcm_analysis(DCAEncContext *c)
651 {
652 int ch, band;
653 int pred_vq_id;
654 int32_t *samples;
655 int32_t estimated_diff[SUBBAND_SAMPLES];
656
657 c->consumed_adpcm_bits = 0;
658 for (ch = 0; ch < c->fullband_channels; ch++) {
659 for (band = 0; band < 32; band++) {
660 samples = c->subband[ch][band] - DCA_ADPCM_COEFFS;
661 pred_vq_id = ff_dcaadpcm_subband_analysis(&c->adpcm_ctx, samples,
662 SUBBAND_SAMPLES, estimated_diff);
663 if (pred_vq_id >= 0) {
664 c->prediction_mode[ch][band] = pred_vq_id;
665 c->consumed_adpcm_bits += 12; //12 bits to transmit prediction vq index
666 c->diff_peak_cb[ch][band] = find_peak(c, estimated_diff, 16);
667 } else {
668 c->prediction_mode[ch][band] = -1;
669 }
670 }
671 }
672 }
673
674 static const int snr_fudge = 128;
675 #define USED_1ABITS 1
676 #define USED_26ABITS 4
677
678 66176 static inline int32_t get_step_size(DCAEncContext *c, int ch, int band)
679 {
680 int32_t step_size;
681
682
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 66176 times.
66176 if (c->bitrate_index == 3)
683 step_size = ff_dca_lossless_quant[c->abits[ch][band]];
684 else
685 66176 step_size = ff_dca_lossy_quant[c->abits[ch][band]];
686
687 66176 return step_size;
688 }
689
690 666752 static int calc_one_scale(DCAEncContext *c, int32_t peak_cb, int abits,
691 softfloat *quant)
692 {
693 int32_t peak;
694 int our_nscale, try_remove;
695 softfloat our_quant;
696
697
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 666752 times.
666752 av_assert0(peak_cb <= 0);
698
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 666752 times.
666752 av_assert0(peak_cb >= -2047);
699
700 666752 our_nscale = 127;
701 666752 peak = c->cb_to_level[-peak_cb];
702
703
2/2
✓ Branch 0 taken 4667264 times.
✓ Branch 1 taken 666752 times.
5334016 for (try_remove = 64; try_remove > 0; try_remove >>= 1) {
704
2/2
✓ Branch 0 taken 1414480 times.
✓ Branch 1 taken 3252784 times.
4667264 if (scalefactor_inv[our_nscale - try_remove].e + stepsize_inv[abits].e <= 17)
705 1414480 continue;
706 3252784 our_quant.m = mul32(scalefactor_inv[our_nscale - try_remove].m, stepsize_inv[abits].m);
707 3252784 our_quant.e = scalefactor_inv[our_nscale - try_remove].e + stepsize_inv[abits].e - 17;
708
2/2
✓ Branch 1 taken 755786 times.
✓ Branch 2 taken 2496998 times.
3252784 if ((ff_dca_quant_levels[abits] - 1) / 2 < quantize_value(peak, our_quant))
709 755786 continue;
710 2496998 our_nscale -= try_remove;
711 }
712
713
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 666752 times.
666752 if (our_nscale >= 125)
714 our_nscale = 124;
715
716 666752 quant->m = mul32(scalefactor_inv[our_nscale].m, stepsize_inv[abits].m);
717 666752 quant->e = scalefactor_inv[our_nscale].e + stepsize_inv[abits].e - 17;
718
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 666752 times.
666752 av_assert0((ff_dca_quant_levels[abits] - 1) / 2 >= quantize_value(peak, *quant));
719
720 666752 return our_nscale;
721 }
722
723 static inline void quantize_adpcm_subband(DCAEncContext *c, int ch, int band)
724 {
725 int32_t step_size;
726 int32_t diff_peak_cb = c->diff_peak_cb[ch][band];
727 c->scale_factor[ch][band] = calc_one_scale(c, diff_peak_cb,
728 c->abits[ch][band],
729 &c->quant[ch][band]);
730
731 step_size = get_step_size(c, ch, band);
732 ff_dcaadpcm_do_real(c->prediction_mode[ch][band],
733 c->quant[ch][band],
734 ff_dca_scale_factor_quant7[c->scale_factor[ch][band]],
735 step_size, c->adpcm_history[ch][band], c->subband[ch][band],
736 c->adpcm_history[ch][band] + 4, c->quantized[ch][band],
737 SUBBAND_SAMPLES, c->cb_to_level[-diff_peak_cb]);
738 }
739
740 10418 static void quantize_adpcm(DCAEncContext *c)
741 {
742 int band, ch;
743
744
2/2
✓ Branch 0 taken 20836 times.
✓ Branch 1 taken 10418 times.
31254 for (ch = 0; ch < c->fullband_channels; ch++)
745
2/2
✓ Branch 0 taken 666752 times.
✓ Branch 1 taken 20836 times.
687588 for (band = 0; band < 32; band++)
746
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 666752 times.
666752 if (c->prediction_mode[ch][band] >= 0)
747 quantize_adpcm_subband(c, ch, band);
748 10418 }
749
750 10418 static void quantize_pcm(DCAEncContext *c)
751 {
752 int sample, band, ch;
753
754
2/2
✓ Branch 0 taken 20836 times.
✓ Branch 1 taken 10418 times.
31254 for (ch = 0; ch < c->fullband_channels; ch++) {
755
2/2
✓ Branch 0 taken 666752 times.
✓ Branch 1 taken 20836 times.
687588 for (band = 0; band < 32; band++) {
756
1/2
✓ Branch 0 taken 666752 times.
✗ Branch 1 not taken.
666752 if (c->prediction_mode[ch][band] == -1) {
757
2/2
✓ Branch 0 taken 10668032 times.
✓ Branch 1 taken 666752 times.
11334784 for (sample = 0; sample < SUBBAND_SAMPLES; sample++) {
758 10668032 int32_t val = quantize_value(c->subband[ch][band][sample],
759 c->quant[ch][band]);
760 10668032 c->quantized[ch][band][sample] = val;
761 }
762 }
763 }
764 }
765 10418 }
766
767 102450 static void accumulate_huff_bit_consumption(int abits, int32_t *quantized,
768 uint32_t *result)
769 {
770 102450 uint8_t sel, id = abits - 1;
771
2/2
✓ Branch 0 taken 374950 times.
✓ Branch 1 taken 102450 times.
477400 for (sel = 0; sel < ff_dca_quant_index_group_size[id]; sel++)
772 374950 result[sel] += dca_vlc_calc_quant_bits(quantized, SUBBAND_SAMPLES,
773 sel, id);
774 102450 }
775
776 20836 static uint32_t set_best_code(uint32_t vlc_bits[DCA_CODE_BOOKS][7],
777 uint32_t clc_bits[DCA_CODE_BOOKS],
778 int32_t res[DCA_CODE_BOOKS])
779 {
780 uint8_t i, sel;
781 uint32_t best_sel_bits[DCA_CODE_BOOKS];
782 int32_t best_sel_id[DCA_CODE_BOOKS];
783 20836 uint32_t t, bits = 0;
784
785
2/2
✓ Branch 0 taken 208360 times.
✓ Branch 1 taken 20836 times.
229196 for (i = 0; i < DCA_CODE_BOOKS; i++) {
786
787
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 208360 times.
208360 av_assert0(!((!!vlc_bits[i][0]) ^ (!!clc_bits[i])));
788
2/2
✓ Branch 0 taken 130000 times.
✓ Branch 1 taken 78360 times.
208360 if (vlc_bits[i][0] == 0) {
789 /* do not transmit adjustment index for empty codebooks */
790 130000 res[i] = ff_dca_quant_index_group_size[i];
791 /* and skip it */
792 130000 continue;
793 }
794
795 78360 best_sel_bits[i] = vlc_bits[i][0];
796 78360 best_sel_id[i] = 0;
797
2/2
✓ Branch 0 taken 349316 times.
✓ Branch 1 taken 78360 times.
427676 for (sel = 0; sel < ff_dca_quant_index_group_size[i]; sel++) {
798
3/4
✓ Branch 0 taken 89308 times.
✓ Branch 1 taken 260008 times.
✓ Branch 2 taken 89308 times.
✗ Branch 3 not taken.
349316 if (best_sel_bits[i] > vlc_bits[i][sel] && vlc_bits[i][sel]) {
799 89308 best_sel_bits[i] = vlc_bits[i][sel];
800 89308 best_sel_id[i] = sel;
801 }
802 }
803
804 /* 2 bits to transmit scale factor adjustment index */
805 78360 t = best_sel_bits[i] + 2;
806
2/2
✓ Branch 0 taken 56868 times.
✓ Branch 1 taken 21492 times.
78360 if (t < clc_bits[i]) {
807 56868 res[i] = best_sel_id[i];
808 56868 bits += t;
809 } else {
810 21492 res[i] = ff_dca_quant_index_group_size[i];
811 21492 bits += clc_bits[i];
812 }
813 }
814 20836 return bits;
815 }
816
817 20836 static uint32_t set_best_abits_code(int abits[DCAENC_SUBBANDS], int bands,
818 int32_t *res)
819 {
820 uint8_t i;
821 uint32_t t;
822 20836 int32_t best_sel = 6;
823 20836 int32_t best_bits = bands * 5;
824
825 /* Check do we have subband which cannot be encoded by Huffman tables */
826
1/2
✓ Branch 0 taken 20836 times.
✗ Branch 1 not taken.
20836 for (i = 0; i < bands; i++) {
827
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 20836 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
20836 if (abits[i] > 12 || abits[i] == 0) {
828 20836 *res = best_sel;
829 20836 return best_bits;
830 }
831 }
832
833 for (i = 0; i < DCA_BITALLOC_12_COUNT; i++) {
834 t = dca_vlc_calc_alloc_bits(abits, bands, i);
835 if (t < best_bits) {
836 best_bits = t;
837 best_sel = i;
838 }
839 }
840
841 *res = best_sel;
842 return best_bits;
843 }
844
845 10418 static int init_quantization_noise(DCAEncContext *c, int noise, int forbid_zero)
846 {
847 10418 int ch, band, ret = USED_26ABITS | USED_1ABITS;
848 uint32_t huff_bit_count_accum[MAX_CHANNELS][DCA_CODE_BOOKS][7];
849 uint32_t clc_bit_count_accum[MAX_CHANNELS][DCA_CODE_BOOKS];
850 10418 uint32_t bits_counter = 0;
851
852 10418 c->consumed_bits = 132 + 333 * c->fullband_channels;
853 10418 c->consumed_bits += c->consumed_adpcm_bits;
854
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10418 times.
10418 if (c->lfe_channel)
855 c->consumed_bits += 72;
856
857 /* attempt to guess the bit distribution based on the prevoius frame */
858
2/2
✓ Branch 0 taken 20836 times.
✓ Branch 1 taken 10418 times.
31254 for (ch = 0; ch < c->fullband_channels; ch++) {
859
2/2
✓ Branch 0 taken 666752 times.
✓ Branch 1 taken 20836 times.
687588 for (band = 0; band < 32; band++) {
860 666752 int snr_cb = c->peak_cb[ch][band] - c->band_masking_cb[band] - noise;
861
862
2/2
✓ Branch 0 taken 58244 times.
✓ Branch 1 taken 608508 times.
666752 if (snr_cb >= 1312) {
863 58244 c->abits[ch][band] = 26;
864 58244 ret &= ~USED_1ABITS;
865
2/2
✓ Branch 0 taken 528984 times.
✓ Branch 1 taken 79524 times.
608508 } else if (snr_cb >= 222) {
866 528984 c->abits[ch][band] = 8 + mul32(snr_cb - 222, 69000000);
867 528984 ret &= ~(USED_26ABITS | USED_1ABITS);
868
2/2
✓ Branch 0 taken 34916 times.
✓ Branch 1 taken 44608 times.
79524 } else if (snr_cb >= 0) {
869 34916 c->abits[ch][band] = 2 + mul32(snr_cb, 106000000);
870 34916 ret &= ~(USED_26ABITS | USED_1ABITS);
871
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 44608 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
44608 } else if (forbid_zero || snr_cb >= -140) {
872 44608 c->abits[ch][band] = 1;
873 44608 ret &= ~USED_26ABITS;
874 } else {
875 c->abits[ch][band] = 0;
876 ret &= ~(USED_26ABITS | USED_1ABITS);
877 }
878 }
879 20836 c->consumed_bits += set_best_abits_code(c->abits[ch], 32,
880 &c->bit_allocation_sel[ch]);
881 }
882
883 /* Recalc scale_factor each time to get bits consumption in case of Huffman coding.
884 It is suboptimal solution */
885 /* TODO: May be cache scaled values */
886
2/2
✓ Branch 0 taken 20836 times.
✓ Branch 1 taken 10418 times.
31254 for (ch = 0; ch < c->fullband_channels; ch++) {
887
2/2
✓ Branch 0 taken 666752 times.
✓ Branch 1 taken 20836 times.
687588 for (band = 0; band < 32; band++) {
888
1/2
✓ Branch 0 taken 666752 times.
✗ Branch 1 not taken.
666752 if (c->prediction_mode[ch][band] == -1) {
889 666752 c->scale_factor[ch][band] = calc_one_scale(c, c->peak_cb[ch][band],
890 c->abits[ch][band],
891 &c->quant[ch][band]);
892 }
893 }
894 }
895 10418 quantize_adpcm(c);
896 10418 quantize_pcm(c);
897
898 10418 memset(huff_bit_count_accum, 0, MAX_CHANNELS * DCA_CODE_BOOKS * 7 * sizeof(uint32_t));
899 10418 memset(clc_bit_count_accum, 0, MAX_CHANNELS * DCA_CODE_BOOKS * sizeof(uint32_t));
900
2/2
✓ Branch 0 taken 20836 times.
✓ Branch 1 taken 10418 times.
31254 for (ch = 0; ch < c->fullband_channels; ch++) {
901
2/2
✓ Branch 0 taken 666752 times.
✓ Branch 1 taken 20836 times.
687588 for (band = 0; band < 32; band++) {
902
3/4
✓ Branch 0 taken 666752 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 102450 times.
✓ Branch 3 taken 564302 times.
666752 if (c->abits[ch][band] && c->abits[ch][band] <= DCA_CODE_BOOKS) {
903 102450 accumulate_huff_bit_consumption(c->abits[ch][band],
904 102450 c->quantized[ch][band],
905 102450 huff_bit_count_accum[ch][c->abits[ch][band] - 1]);
906 102450 clc_bit_count_accum[ch][c->abits[ch][band] - 1] += bit_consumption[c->abits[ch][band]];
907 } else {
908 564302 bits_counter += bit_consumption[c->abits[ch][band]];
909 }
910 }
911 }
912
913
2/2
✓ Branch 0 taken 20836 times.
✓ Branch 1 taken 10418 times.
31254 for (ch = 0; ch < c->fullband_channels; ch++) {
914 20836 bits_counter += set_best_code(huff_bit_count_accum[ch],
915 20836 clc_bit_count_accum[ch],
916 20836 c->quant_index_sel[ch]);
917 }
918
919 10418 c->consumed_bits += bits_counter;
920
921 10418 return ret;
922 }
923
924 1034 static void assign_bits(DCAEncContext *c)
925 {
926 /* Find the bounds where the binary search should work */
927 int low, high, down;
928 1034 int used_abits = 0;
929 1034 int forbid_zero = 1;
930 1034 restart:
931 1034 init_quantization_noise(c, c->worst_quantization_noise, forbid_zero);
932 1034 low = high = c->worst_quantization_noise;
933
2/2
✓ Branch 0 taken 538 times.
✓ Branch 1 taken 496 times.
1034 if (c->consumed_bits > c->frame_bits) {
934
2/2
✓ Branch 0 taken 580 times.
✓ Branch 1 taken 538 times.
1118 while (c->consumed_bits > c->frame_bits) {
935
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 580 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
580 if (used_abits == USED_1ABITS && forbid_zero) {
936 forbid_zero = 0;
937 goto restart;
938 }
939 580 low = high;
940 580 high += snr_fudge;
941 580 used_abits = init_quantization_noise(c, high, forbid_zero);
942 }
943 } else {
944
2/2
✓ Branch 0 taken 532 times.
✓ Branch 1 taken 496 times.
1028 while (c->consumed_bits <= c->frame_bits) {
945 532 high = low;
946
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 532 times.
532 if (used_abits == USED_26ABITS)
947 goto out; /* The requested bitrate is too high, pad with zeros */
948 532 low -= snr_fudge;
949 532 used_abits = init_quantization_noise(c, low, forbid_zero);
950 }
951 }
952
953 /* Now do a binary search between low and high to see what fits */
954
2/2
✓ Branch 0 taken 7238 times.
✓ Branch 1 taken 1034 times.
8272 for (down = snr_fudge >> 1; down; down >>= 1) {
955 7238 init_quantization_noise(c, high - down, forbid_zero);
956
2/2
✓ Branch 0 taken 3724 times.
✓ Branch 1 taken 3514 times.
7238 if (c->consumed_bits <= c->frame_bits)
957 3724 high -= down;
958 }
959 1034 init_quantization_noise(c, high, forbid_zero);
960 1034 out:
961 1034 c->worst_quantization_noise = high;
962
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1032 times.
1034 if (high > c->worst_noise_ever)
963 2 c->worst_noise_ever = high;
964 1034 }
965
966 1034 static void shift_history(DCAEncContext *c, const int32_t *input)
967 {
968 int k, ch;
969
970
2/2
✓ Branch 0 taken 529408 times.
✓ Branch 1 taken 1034 times.
530442 for (k = 0; k < 512; k++)
971
2/2
✓ Branch 0 taken 1058816 times.
✓ Branch 1 taken 529408 times.
1588224 for (ch = 0; ch < c->channels; ch++) {
972 1058816 const int chi = c->channel_order_tab[ch];
973
974 1058816 c->history[ch][k] = input[k * c->channels + chi];
975 }
976 1034 }
977
978 1034 static void fill_in_adpcm_bufer(DCAEncContext *c)
979 {
980 int ch, band;
981 int32_t step_size;
982 /* We fill in ADPCM work buffer for subbands which hasn't been ADPCM coded
983 * in current frame - we need this data if subband of next frame is
984 * ADPCM
985 */
986
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->channels; ch++) {
987
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < 32; band++) {
988 66176 int32_t *samples = c->subband[ch][band] - DCA_ADPCM_COEFFS;
989
1/2
✓ Branch 0 taken 66176 times.
✗ Branch 1 not taken.
66176 if (c->prediction_mode[ch][band] == -1) {
990 66176 step_size = get_step_size(c, ch, band);
991
992 66176 ff_dca_core_dequantize(c->adpcm_history[ch][band],
993 66176 c->quantized[ch][band]+12, step_size,
994 66176 ff_dca_scale_factor_quant7[c->scale_factor[ch][band]], 0, 4);
995 } else {
996 AV_COPY128U(c->adpcm_history[ch][band], c->adpcm_history[ch][band]+4);
997 }
998 /* Copy dequantized values for LPC analysis.
999 * It reduces artifacts in case of extreme quantization,
1000 * example: in current frame abits is 1 and has no prediction flag,
1001 * but end of this frame is sine like signal. In this case, if LPC analysis uses
1002 * original values, likely LPC analysis returns good prediction gain, and sets prediction flag.
1003 * But there are no proper value in decoder history, so likely result will be no good.
1004 * Bitstream has "Predictor history flag switch", but this flag disables history for all subbands
1005 */
1006 66176 samples[0] = c->adpcm_history[ch][band][0] * (1 << 7);
1007 66176 samples[1] = c->adpcm_history[ch][band][1] * (1 << 7);
1008 66176 samples[2] = c->adpcm_history[ch][band][2] * (1 << 7);
1009 66176 samples[3] = c->adpcm_history[ch][band][3] * (1 << 7);
1010 }
1011 }
1012 1034 }
1013
1014 1034 static void calc_lfe_scales(DCAEncContext *c)
1015 {
1016
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1034 times.
1034 if (c->lfe_channel)
1017 c->lfe_scale_factor = calc_one_scale(c, c->lfe_peak_cb, 11, &c->lfe_quant);
1018 1034 }
1019
1020 1034 static void put_frame_header(DCAEncContext *c)
1021 {
1022 /* SYNC */
1023 1034 put_bits(&c->pb, 16, 0x7ffe);
1024 1034 put_bits(&c->pb, 16, 0x8001);
1025
1026 /* Frame type: normal */
1027 1034 put_bits(&c->pb, 1, 1);
1028
1029 /* Deficit sample count: none */
1030 1034 put_bits(&c->pb, 5, 31);
1031
1032 /* CRC is not present */
1033 1034 put_bits(&c->pb, 1, 0);
1034
1035 /* Number of PCM sample blocks */
1036 1034 put_bits(&c->pb, 7, SUBBAND_SAMPLES - 1);
1037
1038 /* Primary frame byte size */
1039 1034 put_bits(&c->pb, 14, c->frame_size - 1);
1040
1041 /* Audio channel arrangement */
1042 1034 put_bits(&c->pb, 6, c->channel_config);
1043
1044 /* Core audio sampling frequency */
1045 1034 put_bits(&c->pb, 4, bitstream_sfreq[c->samplerate_index]);
1046
1047 /* Transmission bit rate */
1048 1034 put_bits(&c->pb, 5, c->bitrate_index);
1049
1050 /* Embedded down mix: disabled */
1051 1034 put_bits(&c->pb, 1, 0);
1052
1053 /* Embedded dynamic range flag: not present */
1054 1034 put_bits(&c->pb, 1, 0);
1055
1056 /* Embedded time stamp flag: not present */
1057 1034 put_bits(&c->pb, 1, 0);
1058
1059 /* Auxiliary data flag: not present */
1060 1034 put_bits(&c->pb, 1, 0);
1061
1062 /* HDCD source: no */
1063 1034 put_bits(&c->pb, 1, 0);
1064
1065 /* Extension audio ID: N/A */
1066 1034 put_bits(&c->pb, 3, 0);
1067
1068 /* Extended audio data: not present */
1069 1034 put_bits(&c->pb, 1, 0);
1070
1071 /* Audio sync word insertion flag: after each sub-frame */
1072 1034 put_bits(&c->pb, 1, 0);
1073
1074 /* Low frequency effects flag: not present or 64x subsampling */
1075
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1034 times.
1034 put_bits(&c->pb, 2, c->lfe_channel ? 2 : 0);
1076
1077 /* Predictor history switch flag: on */
1078 1034 put_bits(&c->pb, 1, 1);
1079
1080 /* No CRC */
1081 /* Multirate interpolator switch: non-perfect reconstruction */
1082 1034 put_bits(&c->pb, 1, 0);
1083
1084 /* Encoder software revision: 7 */
1085 1034 put_bits(&c->pb, 4, 7);
1086
1087 /* Copy history: 0 */
1088 1034 put_bits(&c->pb, 2, 0);
1089
1090 /* Source PCM resolution: 16 bits, not DTS ES */
1091 1034 put_bits(&c->pb, 3, 0);
1092
1093 /* Front sum/difference coding: no */
1094 1034 put_bits(&c->pb, 1, 0);
1095
1096 /* Surrounds sum/difference coding: no */
1097 1034 put_bits(&c->pb, 1, 0);
1098
1099 /* Dialog normalization: 0 dB */
1100 1034 put_bits(&c->pb, 4, 0);
1101 1034 }
1102
1103 1034 static void put_primary_audio_header(DCAEncContext *c)
1104 {
1105 int ch, i;
1106 /* Number of subframes */
1107 1034 put_bits(&c->pb, 4, SUBFRAMES - 1);
1108
1109 /* Number of primary audio channels */
1110 1034 put_bits(&c->pb, 3, c->fullband_channels - 1);
1111
1112 /* Subband activity count */
1113
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1114 2068 put_bits(&c->pb, 5, DCAENC_SUBBANDS - 2);
1115
1116 /* High frequency VQ start subband */
1117
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1118 2068 put_bits(&c->pb, 5, DCAENC_SUBBANDS - 1);
1119
1120 /* Joint intensity coding index: 0, 0 */
1121
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1122 2068 put_bits(&c->pb, 3, 0);
1123
1124 /* Transient mode codebook: A4, A4 (arbitrary) */
1125
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1126 2068 put_bits(&c->pb, 2, 0);
1127
1128 /* Scale factor code book: 7 bit linear, 7-bit sqrt table (for each channel) */
1129
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1130 2068 put_bits(&c->pb, 3, 6);
1131
1132 /* Bit allocation quantizer select: linear 5-bit */
1133
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1134 2068 put_bits(&c->pb, 3, c->bit_allocation_sel[ch]);
1135
1136 /* Quantization index codebook select */
1137
2/2
✓ Branch 0 taken 10340 times.
✓ Branch 1 taken 1034 times.
11374 for (i = 0; i < DCA_CODE_BOOKS; i++)
1138
2/2
✓ Branch 0 taken 20680 times.
✓ Branch 1 taken 10340 times.
31020 for (ch = 0; ch < c->fullband_channels; ch++)
1139 20680 put_bits(&c->pb, ff_dca_quant_index_sel_nbits[i], c->quant_index_sel[ch][i]);
1140
1141 /* Scale factor adjustment index: transmitted in case of Huffman coding */
1142
2/2
✓ Branch 0 taken 10340 times.
✓ Branch 1 taken 1034 times.
11374 for (i = 0; i < DCA_CODE_BOOKS; i++)
1143
2/2
✓ Branch 0 taken 20680 times.
✓ Branch 1 taken 10340 times.
31020 for (ch = 0; ch < c->fullband_channels; ch++)
1144
2/2
✓ Branch 0 taken 5828 times.
✓ Branch 1 taken 14852 times.
20680 if (c->quant_index_sel[ch][i] < ff_dca_quant_index_group_size[i])
1145 5828 put_bits(&c->pb, 2, 0);
1146
1147 /* Audio header CRC check word: not transmitted */
1148 1034 }
1149
1150 132352 static void put_subframe_samples(DCAEncContext *c, int ss, int band, int ch)
1151 {
1152 int i, j, sum, bits, sel;
1153
2/2
✓ Branch 0 taken 20216 times.
✓ Branch 1 taken 112136 times.
132352 if (c->abits[ch][band] <= DCA_CODE_BOOKS) {
1154
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 20216 times.
20216 av_assert0(c->abits[ch][band] > 0);
1155 20216 sel = c->quant_index_sel[ch][c->abits[ch][band] - 1];
1156 // Huffman codes
1157
2/2
✓ Branch 0 taken 16068 times.
✓ Branch 1 taken 4148 times.
20216 if (sel < ff_dca_quant_index_group_size[c->abits[ch][band] - 1]) {
1158 16068 dca_vlc_enc_quant(&c->pb, &c->quantized[ch][band][ss * 8], 8,
1159 16068 sel, c->abits[ch][band] - 1);
1160 16068 return;
1161 }
1162
1163 // Block codes
1164
2/2
✓ Branch 0 taken 1908 times.
✓ Branch 1 taken 2240 times.
4148 if (c->abits[ch][band] <= 7) {
1165
2/2
✓ Branch 0 taken 3816 times.
✓ Branch 1 taken 1908 times.
5724 for (i = 0; i < 8; i += 4) {
1166 3816 sum = 0;
1167
2/2
✓ Branch 0 taken 15264 times.
✓ Branch 1 taken 3816 times.
19080 for (j = 3; j >= 0; j--) {
1168 15264 sum *= ff_dca_quant_levels[c->abits[ch][band]];
1169 15264 sum += c->quantized[ch][band][ss * 8 + i + j];
1170 15264 sum += (ff_dca_quant_levels[c->abits[ch][band]] - 1) / 2;
1171 }
1172 3816 put_bits(&c->pb, bit_consumption[c->abits[ch][band]] / 4, sum);
1173 }
1174 1908 return;
1175 }
1176 }
1177
1178
2/2
✓ Branch 0 taken 915008 times.
✓ Branch 1 taken 114376 times.
1029384 for (i = 0; i < 8; i++) {
1179 915008 bits = bit_consumption[c->abits[ch][band]] / 16;
1180 915008 put_sbits(&c->pb, bits, c->quantized[ch][band][ss * 8 + i]);
1181 }
1182 }
1183
1184 1034 static void put_subframe(DCAEncContext *c, int subframe)
1185 {
1186 int i, band, ss, ch;
1187
1188 /* Subsubframes count */
1189 1034 put_bits(&c->pb, 2, SUBSUBFRAMES -1);
1190
1191 /* Partial subsubframe sample count: dummy */
1192 1034 put_bits(&c->pb, 3, 0);
1193
1194 /* Prediction mode: no ADPCM, in each channel and subband */
1195
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1196
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < DCAENC_SUBBANDS; band++)
1197 66176 put_bits(&c->pb, 1, !(c->prediction_mode[ch][band] == -1));
1198
1199 /* Prediction VQ address */
1200
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1201
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < DCAENC_SUBBANDS; band++)
1202
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 66176 times.
66176 if (c->prediction_mode[ch][band] >= 0)
1203 put_bits(&c->pb, 12, c->prediction_mode[ch][band]);
1204
1205 /* Bit allocation index */
1206
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++) {
1207
1/2
✓ Branch 0 taken 2068 times.
✗ Branch 1 not taken.
2068 if (c->bit_allocation_sel[ch] == 6) {
1208
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < DCAENC_SUBBANDS; band++) {
1209 66176 put_bits(&c->pb, 5, c->abits[ch][band]);
1210 }
1211 } else {
1212 dca_vlc_enc_alloc(&c->pb, c->abits[ch], DCAENC_SUBBANDS,
1213 c->bit_allocation_sel[ch]);
1214 }
1215 }
1216
1217 if (SUBSUBFRAMES > 1) {
1218 /* Transition mode: none for each channel and subband */
1219
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1220
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < DCAENC_SUBBANDS; band++)
1221
1/2
✓ Branch 0 taken 66176 times.
✗ Branch 1 not taken.
66176 if (c->abits[ch][band])
1222 66176 put_bits(&c->pb, 1, 0); /* codebook A4 */
1223 }
1224
1225 /* Scale factors */
1226
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ch = 0; ch < c->fullband_channels; ch++)
1227
2/2
✓ Branch 0 taken 66176 times.
✓ Branch 1 taken 2068 times.
68244 for (band = 0; band < DCAENC_SUBBANDS; band++)
1228
1/2
✓ Branch 0 taken 66176 times.
✗ Branch 1 not taken.
66176 if (c->abits[ch][band])
1229 66176 put_bits(&c->pb, 7, c->scale_factor[ch][band]);
1230
1231 /* Joint subband scale factor codebook select: not transmitted */
1232 /* Scale factors for joint subband coding: not transmitted */
1233 /* Stereo down-mix coefficients: not transmitted */
1234 /* Dynamic range coefficient: not transmitted */
1235 /* Stde information CRC check word: not transmitted */
1236 /* VQ encoded high frequency subbands: not transmitted */
1237
1238 /* LFE data: 8 samples and scalefactor */
1239
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1034 times.
1034 if (c->lfe_channel) {
1240 for (i = 0; i < DCA_LFE_SAMPLES; i++)
1241 put_bits(&c->pb, 8, quantize_value(c->downsampled_lfe[i], c->lfe_quant) & 0xff);
1242 put_bits(&c->pb, 8, c->lfe_scale_factor);
1243 }
1244
1245 /* Audio data (subsubframes) */
1246
2/2
✓ Branch 0 taken 2068 times.
✓ Branch 1 taken 1034 times.
3102 for (ss = 0; ss < SUBSUBFRAMES ; ss++)
1247
2/2
✓ Branch 0 taken 4136 times.
✓ Branch 1 taken 2068 times.
6204 for (ch = 0; ch < c->fullband_channels; ch++)
1248
2/2
✓ Branch 0 taken 132352 times.
✓ Branch 1 taken 4136 times.
136488 for (band = 0; band < DCAENC_SUBBANDS; band++)
1249
1/2
✓ Branch 0 taken 132352 times.
✗ Branch 1 not taken.
132352 if (c->abits[ch][band])
1250 132352 put_subframe_samples(c, ss, band, ch);
1251
1252 /* DSYNC */
1253 1034 put_bits(&c->pb, 16, 0xffff);
1254 1034 }
1255
1256 1034 static int encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
1257 const AVFrame *frame, int *got_packet_ptr)
1258 {
1259 1034 DCAEncContext *c = avctx->priv_data;
1260 const int32_t *samples;
1261 int ret, i;
1262
1263
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1034 times.
1034 if ((ret = ff_get_encode_buffer(avctx, avpkt, c->frame_size, 0)) < 0)
1264 return ret;
1265
1266 1034 samples = (const int32_t *)frame->data[0];
1267
1268 1034 subband_transform(c, samples);
1269
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1034 times.
1034 if (c->lfe_channel)
1270 lfe_downsample(c, samples);
1271
1272 1034 calc_masking(c, samples);
1273
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1034 times.
1034 if (c->options.adpcm_mode)
1274 adpcm_analysis(c);
1275 1034 find_peaks(c);
1276 1034 assign_bits(c);
1277 1034 calc_lfe_scales(c);
1278 1034 shift_history(c, samples);
1279
1280 1034 init_put_bits(&c->pb, avpkt->data, avpkt->size);
1281 1034 fill_in_adpcm_bufer(c);
1282 1034 put_frame_header(c);
1283 1034 put_primary_audio_header(c);
1284
2/2
✓ Branch 0 taken 1034 times.
✓ Branch 1 taken 1034 times.
2068 for (i = 0; i < SUBFRAMES; i++)
1285 1034 put_subframe(c, i);
1286
1287 1034 flush_put_bits(&c->pb);
1288 1034 memset(put_bits_ptr(&c->pb), 0, put_bytes_left(&c->pb, 0));
1289
1290 1034 *got_packet_ptr = 1;
1291 1034 return 0;
1292 }
1293
1294 #define DCAENC_FLAGS AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM
1295
1296 static const AVOption options[] = {
1297 { "dca_adpcm", "Use ADPCM encoding", offsetof(DCAEncContext, options.adpcm_mode), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, DCAENC_FLAGS },
1298 { NULL },
1299 };
1300
1301 static const AVClass dcaenc_class = {
1302 .class_name = "DCA (DTS Coherent Acoustics)",
1303 .item_name = av_default_item_name,
1304 .option = options,
1305 .version = LIBAVUTIL_VERSION_INT,
1306 };
1307
1308 static const FFCodecDefault defaults[] = {
1309 { "b", "1411200" },
1310 { NULL },
1311 };
1312
1313 const FFCodec ff_dca_encoder = {
1314 .p.name = "dca",
1315 CODEC_LONG_NAME("DCA (DTS Coherent Acoustics)"),
1316 .p.type = AVMEDIA_TYPE_AUDIO,
1317 .p.id = AV_CODEC_ID_DTS,
1318 .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_EXPERIMENTAL |
1319 AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1320 .priv_data_size = sizeof(DCAEncContext),
1321 .init = encode_init,
1322 .close = encode_close,
1323 FF_CODEC_ENCODE_CB(encode_frame),
1324 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1325 .p.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S32,
1326 AV_SAMPLE_FMT_NONE },
1327 .p.supported_samplerates = sample_rates,
1328 .p.ch_layouts = (const AVChannelLayout[]){
1329 AV_CHANNEL_LAYOUT_MONO,
1330 AV_CHANNEL_LAYOUT_STEREO,
1331 AV_CHANNEL_LAYOUT_2_2,
1332 AV_CHANNEL_LAYOUT_5POINT0,
1333 AV_CHANNEL_LAYOUT_5POINT1,
1334 { 0 },
1335 },
1336 .defaults = defaults,
1337 .p.priv_class = &dcaenc_class,
1338 };
1339