FFmpeg
atrac9dec.c
Go to the documentation of this file.
1 /*
2  * ATRAC9 decoder
3  * Copyright (c) 2018 Rostislav Pehlivanov <atomnuker@gmail.com>
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 
23 #include "libavutil/thread.h"
24 
25 #include "internal.h"
26 #include "get_bits.h"
27 #include "fft.h"
28 #include "atrac9tab.h"
29 #include "libavutil/lfg.h"
30 #include "libavutil/float_dsp.h"
31 #include "libavutil/mem_internal.h"
32 
33 #define ATRAC9_SF_VLC_BITS 8
34 #define ATRAC9_COEFF_VLC_BITS 9
35 
36 typedef struct ATRAC9ChannelData {
37  int band_ext;
39  int band_ext_data[4];
42 
44  int precision_fine[30];
45  int precision_mask[30];
46 
47  int codebookset[30];
48 
51 
52  DECLARE_ALIGNED(32, float, coeffs )[256];
53  DECLARE_ALIGNED(32, float, prev_win)[128];
55 
56 typedef struct ATRAC9BlockData {
58 
59  /* Base */
63 
64  /* Stereo block only */
66 
67  /* Band extension only */
71 
72  /* Gradient */
73  int grad_mode;
75  int gradient[31];
76 
77  /* Stereo */
79  int is_signs[30];
80 
81  int reuseable;
82 
84 
85 typedef struct ATRAC9Context {
91 
92  /* Set on init */
98 
99  /* Generated on init */
100  uint8_t alloc_curve[48][48];
101  DECLARE_ALIGNED(32, float, imdct_win)[256];
102 
103  DECLARE_ALIGNED(32, float, temp)[256];
104 } ATRAC9Context;
105 
106 static VLC sf_vlc[2][8]; /* Signed/unsigned, length */
107 static VLC coeff_vlc[2][8][4]; /* Cookbook, precision, cookbook index */
108 
110  GetBitContext *gb)
111 {
112  int grad_range[2];
113  int grad_value[2];
114  int values, sign, base;
115  uint8_t *curve;
116  float scale;
117 
118  b->grad_mode = get_bits(gb, 2);
119  if (b->grad_mode) {
120  grad_range[0] = get_bits(gb, 5);
121  grad_range[1] = 31;
122  grad_value[0] = get_bits(gb, 5);
123  grad_value[1] = 31;
124  } else {
125  grad_range[0] = get_bits(gb, 6);
126  grad_range[1] = get_bits(gb, 6) + 1;
127  grad_value[0] = get_bits(gb, 5);
128  grad_value[1] = get_bits(gb, 5);
129  }
130  b->grad_boundary = get_bits(gb, 4);
131 
132  if (grad_range[0] >= grad_range[1] || grad_range[1] > 31)
133  return AVERROR_INVALIDDATA;
134 
135  if (b->grad_boundary > b->q_unit_cnt)
136  return AVERROR_INVALIDDATA;
137 
138  values = grad_value[1] - grad_value[0];
139  sign = 1 - 2*(values < 0);
140  base = grad_value[0] + sign;
141  scale = (FFABS(values) - 1) / 31.0f;
142  curve = s->alloc_curve[grad_range[1] - grad_range[0] - 1];
143 
144  for (int i = 0; i <= b->q_unit_cnt; i++)
145  b->gradient[i] = grad_value[i >= grad_range[0]];
146 
147  for (int i = grad_range[0]; i < grad_range[1]; i++)
148  b->gradient[i] = base + sign*((int)(scale*curve[i - grad_range[0]]));
149 
150  return 0;
151 }
152 
155 {
156  memset(c->precision_mask, 0, sizeof(c->precision_mask));
157  for (int i = 1; i < b->q_unit_cnt; i++) {
158  const int delta = FFABS(c->scalefactors[i] - c->scalefactors[i - 1]) - 1;
159  if (delta > 0) {
160  const int neg = c->scalefactors[i - 1] > c->scalefactors[i];
161  c->precision_mask[i - neg] += FFMIN(delta, 5);
162  }
163  }
164 
165  if (b->grad_mode) {
166  for (int i = 0; i < b->q_unit_cnt; i++) {
167  c->precision_coarse[i] = c->scalefactors[i];
168  c->precision_coarse[i] += c->precision_mask[i] - b->gradient[i];
169  if (c->precision_coarse[i] < 0)
170  continue;
171  switch (b->grad_mode) {
172  case 1:
173  c->precision_coarse[i] >>= 1;
174  break;
175  case 2:
176  c->precision_coarse[i] = (3 * c->precision_coarse[i]) >> 3;
177  break;
178  case 3:
179  c->precision_coarse[i] >>= 2;
180  break;
181  }
182  }
183  } else {
184  for (int i = 0; i < b->q_unit_cnt; i++)
185  c->precision_coarse[i] = c->scalefactors[i] - b->gradient[i];
186  }
187 
188 
189  for (int i = 0; i < b->q_unit_cnt; i++)
190  c->precision_coarse[i] = FFMAX(c->precision_coarse[i], 1);
191 
192  for (int i = 0; i < b->grad_boundary; i++)
193  c->precision_coarse[i]++;
194 
195  for (int i = 0; i < b->q_unit_cnt; i++) {
196  c->precision_fine[i] = 0;
197  if (c->precision_coarse[i] > 15) {
198  c->precision_fine[i] = FFMIN(c->precision_coarse[i], 30) - 15;
199  c->precision_coarse[i] = 15;
200  }
201  }
202 }
203 
205  GetBitContext *gb, int stereo)
206 {
207  int ext_band = 0;
208 
209  if (b->has_band_ext) {
210  if (b->q_unit_cnt < 13 || b->q_unit_cnt > 20)
211  return AVERROR_INVALIDDATA;
212  ext_band = at9_tab_band_ext_group[b->q_unit_cnt - 13][2];
213  if (stereo) {
214  b->channel[1].band_ext = get_bits(gb, 2);
215  b->channel[1].band_ext = ext_band > 2 ? b->channel[1].band_ext : 4;
216  } else {
217  skip_bits1(gb);
218  }
219  }
220 
221  b->has_band_ext_data = get_bits1(gb);
222  if (!b->has_band_ext_data)
223  return 0;
224 
225  if (!b->has_band_ext) {
226  skip_bits(gb, 2);
227  skip_bits_long(gb, get_bits(gb, 5));
228  return 0;
229  }
230 
231  b->channel[0].band_ext = get_bits(gb, 2);
232  b->channel[0].band_ext = ext_band > 2 ? b->channel[0].band_ext : 4;
233 
234  if (!get_bits(gb, 5)) {
235  for (int i = 0; i <= stereo; i++) {
236  ATRAC9ChannelData *c = &b->channel[i];
237  const int count = at9_tab_band_ext_cnt[c->band_ext][ext_band];
238  for (int j = 0; j < count; j++) {
239  int len = at9_tab_band_ext_lengths[c->band_ext][ext_band][j];
240  c->band_ext_data[j] = av_clip_uintp2_c(c->band_ext_data[j], len);
241  }
242  }
243 
244  return 0;
245  }
246 
247  for (int i = 0; i <= stereo; i++) {
248  ATRAC9ChannelData *c = &b->channel[i];
249  const int count = at9_tab_band_ext_cnt[c->band_ext][ext_band];
250  for (int j = 0; j < count; j++) {
251  int len = at9_tab_band_ext_lengths[c->band_ext][ext_band][j];
252  c->band_ext_data[j] = get_bits(gb, len);
253  }
254  }
255 
256  return 0;
257 }
258 
261  int channel_idx, int first_in_pkt)
262 {
263  static const uint8_t mode_map[2][4] = { { 0, 1, 2, 3 }, { 0, 2, 3, 4 } };
264  const int mode = mode_map[channel_idx][get_bits(gb, 2)];
265 
266  memset(c->scalefactors, 0, sizeof(c->scalefactors));
267 
268  if (first_in_pkt && (mode == 4 || ((mode == 3) && !channel_idx))) {
269  av_log(s->avctx, AV_LOG_ERROR, "Invalid scalefactor coding mode!\n");
270  return AVERROR_INVALIDDATA;
271  }
272 
273  switch (mode) {
274  case 0: { /* VLC delta offset */
275  const uint8_t *sf_weights = at9_tab_sf_weights[get_bits(gb, 3)];
276  const int base = get_bits(gb, 5);
277  const int len = get_bits(gb, 2) + 3;
278  const VLC *tab = &sf_vlc[0][len];
279 
280  c->scalefactors[0] = get_bits(gb, len);
281 
282  for (int i = 1; i < b->band_ext_q_unit; i++) {
283  int val = c->scalefactors[i - 1] + get_vlc2(gb, tab->table,
284  ATRAC9_SF_VLC_BITS, 1);
285  c->scalefactors[i] = val & ((1 << len) - 1);
286  }
287 
288  for (int i = 0; i < b->band_ext_q_unit; i++)
289  c->scalefactors[i] += base - sf_weights[i];
290 
291  break;
292  }
293  case 1: { /* CLC offset */
294  const int len = get_bits(gb, 2) + 2;
295  const int base = len < 5 ? get_bits(gb, 5) : 0;
296  for (int i = 0; i < b->band_ext_q_unit; i++)
297  c->scalefactors[i] = base + get_bits(gb, len);
298  break;
299  }
300  case 2:
301  case 4: { /* VLC dist to baseline */
302  const int *baseline = mode == 4 ? c->scalefactors_prev :
303  channel_idx ? b->channel[0].scalefactors :
304  c->scalefactors_prev;
305  const int baseline_len = mode == 4 ? b->q_unit_cnt_prev :
306  channel_idx ? b->band_ext_q_unit :
307  b->q_unit_cnt_prev;
308 
309  const int len = get_bits(gb, 2) + 2;
310  const int unit_cnt = FFMIN(b->band_ext_q_unit, baseline_len);
311  const VLC *tab = &sf_vlc[1][len];
312 
313  for (int i = 0; i < unit_cnt; i++) {
314  int dist = get_vlc2(gb, tab->table, ATRAC9_SF_VLC_BITS, 1);
315  c->scalefactors[i] = baseline[i] + dist;
316  }
317 
318  for (int i = unit_cnt; i < b->band_ext_q_unit; i++)
319  c->scalefactors[i] = get_bits(gb, 5);
320 
321  break;
322  }
323  case 3: { /* VLC offset with baseline */
324  const int *baseline = channel_idx ? b->channel[0].scalefactors :
325  c->scalefactors_prev;
326  const int baseline_len = channel_idx ? b->band_ext_q_unit :
327  b->q_unit_cnt_prev;
328 
329  const int base = get_bits(gb, 5) - (1 << (5 - 1));
330  const int len = get_bits(gb, 2) + 1;
331  const int unit_cnt = FFMIN(b->band_ext_q_unit, baseline_len);
332  const VLC *tab = &sf_vlc[0][len];
333 
334  c->scalefactors[0] = get_bits(gb, len);
335 
336  for (int i = 1; i < unit_cnt; i++) {
337  int val = c->scalefactors[i - 1] + get_vlc2(gb, tab->table,
338  ATRAC9_SF_VLC_BITS, 1);
339  c->scalefactors[i] = val & ((1 << len) - 1);
340  }
341 
342  for (int i = 0; i < unit_cnt; i++)
343  c->scalefactors[i] += base + baseline[i];
344 
345  for (int i = unit_cnt; i < b->band_ext_q_unit; i++)
346  c->scalefactors[i] = get_bits(gb, 5);
347  break;
348  }
349  }
350 
351  for (int i = 0; i < b->band_ext_q_unit; i++)
352  if (c->scalefactors[i] < 0 || c->scalefactors[i] > 31)
353  return AVERROR_INVALIDDATA;
354 
355  memcpy(c->scalefactors_prev, c->scalefactors, sizeof(c->scalefactors));
356 
357  return 0;
358 }
359 
362 {
363  int avg = 0;
364  const int last_sf = c->scalefactors[c->q_unit_cnt];
365 
366  memset(c->codebookset, 0, sizeof(c->codebookset));
367 
368  if (c->q_unit_cnt <= 1)
369  return;
370  if (s->samplerate_idx > 7)
371  return;
372 
373  c->scalefactors[c->q_unit_cnt] = c->scalefactors[c->q_unit_cnt - 1];
374 
375  if (c->q_unit_cnt > 12) {
376  for (int i = 0; i < 12; i++)
377  avg += c->scalefactors[i];
378  avg = (avg + 6) / 12;
379  }
380 
381  for (int i = 8; i < c->q_unit_cnt; i++) {
382  const int prev = c->scalefactors[i - 1];
383  const int cur = c->scalefactors[i ];
384  const int next = c->scalefactors[i + 1];
385  const int min = FFMIN(prev, next);
386  if ((cur - min >= 3 || 2*cur - prev - next >= 3))
387  c->codebookset[i] = 1;
388  }
389 
390 
391  for (int i = 12; i < c->q_unit_cnt; i++) {
392  const int cur = c->scalefactors[i];
393  const int cnd = at9_q_unit_to_coeff_cnt[i] == 16;
394  const int min = FFMIN(c->scalefactors[i + 1], c->scalefactors[i - 1]);
395  if (c->codebookset[i])
396  continue;
397 
398  c->codebookset[i] = (((cur - min) >= 2) && (cur >= (avg - cnd)));
399  }
400 
401  c->scalefactors[c->q_unit_cnt] = last_sf;
402 }
403 
406 {
407  const int max_prec = s->samplerate_idx > 7 ? 1 : 7;
408 
409  memset(c->q_coeffs_coarse, 0, sizeof(c->q_coeffs_coarse));
410 
411  for (int i = 0; i < c->q_unit_cnt; i++) {
412  int *coeffs = &c->q_coeffs_coarse[at9_q_unit_to_coeff_idx[i]];
413  const int bands = at9_q_unit_to_coeff_cnt[i];
414  const int prec = c->precision_coarse[i] + 1;
415 
416  if (prec <= max_prec) {
417  const int cb = c->codebookset[i];
418  const int cbi = at9_q_unit_to_codebookidx[i];
419  const VLC *tab = &coeff_vlc[cb][prec][cbi];
420  const HuffmanCodebook *huff = &at9_huffman_coeffs[cb][prec][cbi];
421  const int groups = bands >> huff->value_cnt_pow;
422 
423  for (int j = 0; j < groups; j++) {
424  uint16_t val = get_vlc2(gb, tab->table, ATRAC9_COEFF_VLC_BITS, 2);
425 
426  for (int k = 0; k < huff->value_cnt; k++) {
427  coeffs[k] = sign_extend(val, huff->value_bits);
428  val >>= huff->value_bits;
429  }
430 
431  coeffs += huff->value_cnt;
432  }
433  } else {
434  for (int j = 0; j < bands; j++)
435  coeffs[j] = sign_extend(get_bits(gb, prec), prec);
436  }
437  }
438 }
439 
442 {
443  memset(c->q_coeffs_fine, 0, sizeof(c->q_coeffs_fine));
444 
445  for (int i = 0; i < c->q_unit_cnt; i++) {
446  const int start = at9_q_unit_to_coeff_idx[i + 0];
447  const int end = at9_q_unit_to_coeff_idx[i + 1];
448  const int len = c->precision_fine[i] + 1;
449 
450  if (c->precision_fine[i] <= 0)
451  continue;
452 
453  for (int j = start; j < end; j++)
454  c->q_coeffs_fine[j] = sign_extend(get_bits(gb, len), len);
455  }
456 }
457 
460 {
461  memset(c->coeffs, 0, sizeof(c->coeffs));
462 
463  for (int i = 0; i < c->q_unit_cnt; i++) {
464  const int start = at9_q_unit_to_coeff_idx[i + 0];
465  const int end = at9_q_unit_to_coeff_idx[i + 1];
466 
467  const float coarse_c = at9_quant_step_coarse[c->precision_coarse[i]];
468  const float fine_c = at9_quant_step_fine[c->precision_fine[i]];
469 
470  for (int j = start; j < end; j++) {
471  const float vc = c->q_coeffs_coarse[j] * coarse_c;
472  const float vf = c->q_coeffs_fine[j] * fine_c;
473  c->coeffs[j] = vc + vf;
474  }
475  }
476 }
477 
479  const int stereo)
480 {
481  float *src = b->channel[ b->cpe_base_channel].coeffs;
482  float *dst = b->channel[!b->cpe_base_channel].coeffs;
483 
484  if (!stereo)
485  return;
486 
487  if (b->q_unit_cnt <= b->stereo_q_unit)
488  return;
489 
490  for (int i = b->stereo_q_unit; i < b->q_unit_cnt; i++) {
491  const int sign = b->is_signs[i];
492  const int start = at9_q_unit_to_coeff_idx[i + 0];
493  const int end = at9_q_unit_to_coeff_idx[i + 1];
494  for (int j = start; j < end; j++)
495  dst[j] = sign*src[j];
496  }
497 }
498 
500  const int stereo)
501 {
502  for (int i = 0; i <= stereo; i++) {
503  float *coeffs = b->channel[i].coeffs;
504  for (int j = 0; j < b->q_unit_cnt; j++) {
505  const int start = at9_q_unit_to_coeff_idx[j + 0];
506  const int end = at9_q_unit_to_coeff_idx[j + 1];
507  const int scalefactor = b->channel[i].scalefactors[j];
508  const float scale = at9_scalefactor_c[scalefactor];
509  for (int k = start; k < end; k++)
510  coeffs[k] *= scale;
511  }
512  }
513 }
514 
516  int start, int count)
517 {
518  float maxval = 0.0f;
519  for (int i = 0; i < count; i += 2) {
520  double tmp[2];
521  av_bmg_get(&s->lfg, tmp);
522  c->coeffs[start + i + 0] = tmp[0];
523  c->coeffs[start + i + 1] = tmp[1];
524  maxval = FFMAX(FFMAX(FFABS(tmp[0]), FFABS(tmp[1])), maxval);
525  }
526  /* Normalize */
527  for (int i = 0; i < count; i++)
528  c->coeffs[start + i] /= maxval;
529 }
530 
531 static inline void scale_band_ext_coeffs(ATRAC9ChannelData *c, float sf[6],
532  const int s_unit, const int e_unit)
533 {
534  for (int i = s_unit; i < e_unit; i++) {
535  const int start = at9_q_unit_to_coeff_idx[i + 0];
536  const int end = at9_q_unit_to_coeff_idx[i + 1];
537  for (int j = start; j < end; j++)
538  c->coeffs[j] *= sf[i - s_unit];
539  }
540 }
541 
543  const int stereo)
544 {
545  const int g_units[4] = { /* A, B, C, total units */
546  b->q_unit_cnt,
547  at9_tab_band_ext_group[b->q_unit_cnt - 13][0],
548  at9_tab_band_ext_group[b->q_unit_cnt - 13][1],
549  FFMAX(g_units[2], 22),
550  };
551 
552  const int g_bins[4] = { /* A, B, C, total bins */
553  at9_q_unit_to_coeff_idx[g_units[0]],
554  at9_q_unit_to_coeff_idx[g_units[1]],
555  at9_q_unit_to_coeff_idx[g_units[2]],
556  at9_q_unit_to_coeff_idx[g_units[3]],
557  };
558 
559  for (int ch = 0; ch <= stereo; ch++) {
560  ATRAC9ChannelData *c = &b->channel[ch];
561 
562  /* Mirror the spectrum */
563  for (int i = 0; i < 3; i++)
564  for (int j = 0; j < (g_bins[i + 1] - g_bins[i + 0]); j++)
565  c->coeffs[g_bins[i] + j] = c->coeffs[g_bins[i] - j - 1];
566 
567  switch (c->band_ext) {
568  case 0: {
569  float sf[6] = { 0.0f };
570  const int l = g_units[3] - g_units[0] - 1;
571  const int n_start = at9_q_unit_to_coeff_idx[g_units[3] - 1];
572  const int n_cnt = at9_q_unit_to_coeff_cnt[g_units[3] - 1];
573  switch (at9_tab_band_ext_group[b->q_unit_cnt - 13][2]) {
574  case 3:
575  sf[0] = at9_band_ext_scales_m0[0][0][c->band_ext_data[0]];
576  sf[1] = at9_band_ext_scales_m0[0][1][c->band_ext_data[0]];
577  sf[2] = at9_band_ext_scales_m0[0][2][c->band_ext_data[1]];
578  sf[3] = at9_band_ext_scales_m0[0][3][c->band_ext_data[2]];
579  sf[4] = at9_band_ext_scales_m0[0][4][c->band_ext_data[3]];
580  break;
581  case 4:
582  sf[0] = at9_band_ext_scales_m0[1][0][c->band_ext_data[0]];
583  sf[1] = at9_band_ext_scales_m0[1][1][c->band_ext_data[0]];
584  sf[2] = at9_band_ext_scales_m0[1][2][c->band_ext_data[1]];
585  sf[3] = at9_band_ext_scales_m0[1][3][c->band_ext_data[2]];
586  sf[4] = at9_band_ext_scales_m0[1][4][c->band_ext_data[3]];
587  break;
588  case 5:
589  sf[0] = at9_band_ext_scales_m0[2][0][c->band_ext_data[0]];
590  sf[1] = at9_band_ext_scales_m0[2][1][c->band_ext_data[1]];
591  sf[2] = at9_band_ext_scales_m0[2][2][c->band_ext_data[1]];
592  break;
593  }
594 
595  sf[l] = at9_scalefactor_c[c->scalefactors[g_units[0]]];
596 
597  fill_with_noise(s, c, n_start, n_cnt);
598  scale_band_ext_coeffs(c, sf, g_units[0], g_units[3]);
599  break;
600  }
601  case 1: {
602  float sf[6];
603  for (int i = g_units[0]; i < g_units[3]; i++)
604  sf[i - g_units[0]] = at9_scalefactor_c[c->scalefactors[i]];
605 
606  fill_with_noise(s, c, g_bins[0], g_bins[3] - g_bins[0]);
607  scale_band_ext_coeffs(c, sf, g_units[0], g_units[3]);
608  break;
609  }
610  case 2: {
611  const float g_sf[2] = {
612  at9_band_ext_scales_m2[c->band_ext_data[0]],
613  at9_band_ext_scales_m2[c->band_ext_data[1]],
614  };
615 
616  for (int i = 0; i < 2; i++)
617  for (int j = g_bins[i + 0]; j < g_bins[i + 1]; j++)
618  c->coeffs[j] *= g_sf[i];
619  break;
620  }
621  case 3: {
622  float scale = at9_band_ext_scales_m3[c->band_ext_data[0]][0];
623  float rate = at9_band_ext_scales_m3[c->band_ext_data[1]][1];
624  rate = pow(2, rate);
625  for (int i = g_bins[0]; i < g_bins[3]; i++) {
626  scale *= rate;
627  c->coeffs[i] *= scale;
628  }
629  break;
630  }
631  case 4: {
632  const float m = at9_band_ext_scales_m4[c->band_ext_data[0]];
633  const float g_sf[3] = { 0.7079468f*m, 0.5011902f*m, 0.3548279f*m };
634 
635  for (int i = 0; i < 3; i++)
636  for (int j = g_bins[i + 0]; j < g_bins[i + 1]; j++)
637  c->coeffs[j] *= g_sf[i];
638  break;
639  }
640  }
641  }
642 }
643 
646  int frame_idx, int block_idx)
647 {
648  const int first_in_pkt = !get_bits1(gb);
649  const int reuse_params = get_bits1(gb);
650  const int stereo = s->block_config->type[block_idx] == ATRAC9_BLOCK_TYPE_CPE;
651 
652  if (s->block_config->type[block_idx] == ATRAC9_BLOCK_TYPE_LFE) {
653  ATRAC9ChannelData *c = &b->channel[0];
654  const int precision = reuse_params ? 8 : 4;
655  c->q_unit_cnt = b->q_unit_cnt = 2;
656 
657  memset(c->scalefactors, 0, sizeof(c->scalefactors));
658  memset(c->q_coeffs_fine, 0, sizeof(c->q_coeffs_fine));
659  memset(c->q_coeffs_coarse, 0, sizeof(c->q_coeffs_coarse));
660 
661  for (int i = 0; i < b->q_unit_cnt; i++) {
662  c->scalefactors[i] = get_bits(gb, 5);
663  c->precision_coarse[i] = precision;
664  c->precision_fine[i] = 0;
665  }
666 
667  for (int i = 0; i < c->q_unit_cnt; i++) {
668  const int start = at9_q_unit_to_coeff_idx[i + 0];
669  const int end = at9_q_unit_to_coeff_idx[i + 1];
670  for (int j = start; j < end; j++)
671  c->q_coeffs_coarse[j] = get_bits(gb, c->precision_coarse[i] + 1);
672  }
673 
674  dequantize (s, b, c);
675  apply_scalefactors(s, b, 0);
676 
677  goto imdct;
678  }
679 
680  if (first_in_pkt && reuse_params) {
681  av_log(s->avctx, AV_LOG_ERROR, "Invalid block flags!\n");
682  return AVERROR_INVALIDDATA;
683  }
684 
685  /* Band parameters */
686  if (!reuse_params) {
687  int stereo_band, ext_band;
688  const int min_band_count = s->samplerate_idx > 7 ? 1 : 3;
689  b->reuseable = 0;
690  b->band_count = get_bits(gb, 4) + min_band_count;
691  b->q_unit_cnt = at9_tab_band_q_unit_map[b->band_count];
692 
693  b->band_ext_q_unit = b->stereo_q_unit = b->q_unit_cnt;
694 
695  if (b->band_count > at9_tab_sri_max_bands[s->samplerate_idx]) {
696  av_log(s->avctx, AV_LOG_ERROR, "Invalid band count %i!\n",
697  b->band_count);
698  return AVERROR_INVALIDDATA;
699  }
700 
701  if (stereo) {
702  stereo_band = get_bits(gb, 4) + min_band_count;
703  if (stereo_band > b->band_count) {
704  av_log(s->avctx, AV_LOG_ERROR, "Invalid stereo band %i!\n",
705  stereo_band);
706  return AVERROR_INVALIDDATA;
707  }
708  b->stereo_q_unit = at9_tab_band_q_unit_map[stereo_band];
709  }
710 
711  b->has_band_ext = get_bits1(gb);
712  if (b->has_band_ext) {
713  ext_band = get_bits(gb, 4) + min_band_count;
714  if (ext_band < b->band_count) {
715  av_log(s->avctx, AV_LOG_ERROR, "Invalid extension band %i!\n",
716  ext_band);
717  return AVERROR_INVALIDDATA;
718  }
719  b->band_ext_q_unit = at9_tab_band_q_unit_map[ext_band];
720  }
721  b->reuseable = 1;
722  }
723  if (!b->reuseable) {
724  av_log(s->avctx, AV_LOG_ERROR, "invalid block reused!\n");
725  return AVERROR_INVALIDDATA;
726  }
727 
728  /* Calculate bit alloc gradient */
729  if (parse_gradient(s, b, gb))
730  return AVERROR_INVALIDDATA;
731 
732  /* IS data */
733  b->cpe_base_channel = 0;
734  if (stereo) {
735  b->cpe_base_channel = get_bits1(gb);
736  if (get_bits1(gb)) {
737  for (int i = b->stereo_q_unit; i < b->q_unit_cnt; i++)
738  b->is_signs[i] = 1 - 2*get_bits1(gb);
739  } else {
740  for (int i = 0; i < FF_ARRAY_ELEMS(b->is_signs); i++)
741  b->is_signs[i] = 1;
742  }
743  }
744 
745  /* Band extension */
746  if (parse_band_ext(s, b, gb, stereo))
747  return AVERROR_INVALIDDATA;
748 
749  /* Scalefactors */
750  for (int i = 0; i <= stereo; i++) {
751  ATRAC9ChannelData *c = &b->channel[i];
752  c->q_unit_cnt = i == b->cpe_base_channel ? b->q_unit_cnt :
753  b->stereo_q_unit;
754  if (read_scalefactors(s, b, c, gb, i, first_in_pkt))
755  return AVERROR_INVALIDDATA;
756 
757  calc_precision (s, b, c);
758  calc_codebook_idx (s, b, c);
759  read_coeffs_coarse(s, b, c, gb);
760  read_coeffs_fine (s, b, c, gb);
761  dequantize (s, b, c);
762  }
763 
764  b->q_unit_cnt_prev = b->has_band_ext ? b->band_ext_q_unit : b->q_unit_cnt;
765 
766  apply_intensity_stereo(s, b, stereo);
767  apply_scalefactors (s, b, stereo);
768 
769  if (b->has_band_ext && b->has_band_ext_data)
770  apply_band_extension (s, b, stereo);
771 
772 imdct:
773  for (int i = 0; i <= stereo; i++) {
774  ATRAC9ChannelData *c = &b->channel[i];
775  const int dst_idx = s->block_config->plane_map[block_idx][i];
776  const int wsize = 1 << s->frame_log2;
777  const ptrdiff_t offset = wsize*frame_idx*sizeof(float);
778  float *dst = (float *)(frame->extended_data[dst_idx] + offset);
779 
780  s->imdct.imdct_half(&s->imdct, s->temp, c->coeffs);
781  s->fdsp->vector_fmul_window(dst, c->prev_win, s->temp,
782  s->imdct_win, wsize >> 1);
783  memcpy(c->prev_win, s->temp + (wsize >> 1), sizeof(float)*wsize >> 1);
784  }
785 
786  return 0;
787 }
788 
789 static int atrac9_decode_frame(AVCodecContext *avctx, void *data,
790  int *got_frame_ptr, AVPacket *avpkt)
791 {
792  int ret;
793  GetBitContext gb;
794  AVFrame *frame = data;
795  ATRAC9Context *s = avctx->priv_data;
796  const int frames = FFMIN(avpkt->size / s->avg_frame_size, s->frame_count);
797 
798  frame->nb_samples = (1 << s->frame_log2) * frames;
799  ret = ff_get_buffer(avctx, frame, 0);
800  if (ret < 0)
801  return ret;
802 
803  init_get_bits8(&gb, avpkt->data, avpkt->size);
804 
805  for (int i = 0; i < frames; i++) {
806  for (int j = 0; j < s->block_config->count; j++) {
807  ret = atrac9_decode_block(s, &gb, &s->block[j], frame, i, j);
808  if (ret)
809  return ret;
810  align_get_bits(&gb);
811  }
812  }
813 
814  *got_frame_ptr = 1;
815 
816  return avctx->block_align;
817 }
818 
820 {
821  ATRAC9Context *s = avctx->priv_data;
822 
823  for (int j = 0; j < s->block_config->count; j++) {
824  ATRAC9BlockData *b = &s->block[j];
825  const int stereo = s->block_config->type[j] == ATRAC9_BLOCK_TYPE_CPE;
826  for (int i = 0; i <= stereo; i++) {
827  ATRAC9ChannelData *c = &b->channel[i];
828  memset(c->prev_win, 0, sizeof(c->prev_win));
829  }
830  }
831 }
832 
834 {
835  ATRAC9Context *s = avctx->priv_data;
836 
837  ff_mdct_end(&s->imdct);
838  av_freep(&s->fdsp);
839 
840  return 0;
841 }
842 
843 static av_cold void atrac9_init_vlc(VLC *vlc, int nb_bits, int nb_codes,
844  const uint8_t (**tab)[2],
845  unsigned *buf_offset, int offset)
846 {
847  static VLC_TYPE vlc_buf[24812][2];
848 
849  vlc->table = &vlc_buf[*buf_offset];
850  vlc->table_allocated = FF_ARRAY_ELEMS(vlc_buf) - *buf_offset;
851  ff_init_vlc_from_lengths(vlc, nb_bits, nb_codes,
852  &(*tab)[0][1], 2, &(*tab)[0][0], 2, 1,
854  *buf_offset += vlc->table_size;
855  *tab += nb_codes;
856 }
857 
858 static av_cold void atrac9_init_static(void)
859 {
860  const uint8_t (*tab)[2];
861  unsigned offset = 0;
862 
863  /* Unsigned scalefactor VLCs */
864  tab = at9_sfb_a_tab;
865  for (int i = 1; i < 7; i++) {
867 
869  hf->size, &tab, &offset, 0);
870  }
871 
872  /* Signed scalefactor VLCs */
873  tab = at9_sfb_b_tab;
874  for (int i = 2; i < 6; i++) {
876 
877  /* The symbols are signed integers in the range -16..15;
878  * the values in the source table are offset by 16 to make
879  * them fit into an uint8_t; the -16 reverses this shift. */
881  hf->size, &tab, &offset, -16);
882  }
883 
884  /* Coefficient VLCs */
886  for (int i = 0; i < 2; i++) {
887  for (int j = 2; j < 8; j++) {
888  for (int k = i; k < 4; k++) {
889  const HuffmanCodebook *hf = &at9_huffman_coeffs[i][j][k];
891  hf->size, &tab, &offset, 0);
892  }
893  }
894  }
895 }
896 
898 {
899  static AVOnce static_table_init = AV_ONCE_INIT;
900  GetBitContext gb;
901  ATRAC9Context *s = avctx->priv_data;
902  int version, block_config_idx, superframe_idx, alloc_c_len;
903 
904  s->avctx = avctx;
905 
906  av_lfg_init(&s->lfg, 0xFBADF00D);
907 
908  if (avctx->block_align <= 0) {
909  av_log(avctx, AV_LOG_ERROR, "Invalid block align\n");
910  return AVERROR_INVALIDDATA;
911  }
912 
913  if (avctx->extradata_size != 12) {
914  av_log(avctx, AV_LOG_ERROR, "Invalid extradata length!\n");
915  return AVERROR_INVALIDDATA;
916  }
917 
918  version = AV_RL32(avctx->extradata);
919  if (version > 2) {
920  av_log(avctx, AV_LOG_ERROR, "Unsupported version (%i)!\n", version);
921  return AVERROR_INVALIDDATA;
922  }
923 
924  init_get_bits8(&gb, avctx->extradata + 4, avctx->extradata_size);
925 
926  if (get_bits(&gb, 8) != 0xFE) {
927  av_log(avctx, AV_LOG_ERROR, "Incorrect magic byte!\n");
928  return AVERROR_INVALIDDATA;
929  }
930 
931  s->samplerate_idx = get_bits(&gb, 4);
932  avctx->sample_rate = at9_tab_samplerates[s->samplerate_idx];
933 
934  block_config_idx = get_bits(&gb, 3);
935  if (block_config_idx > 5) {
936  av_log(avctx, AV_LOG_ERROR, "Incorrect block config!\n");
937  return AVERROR_INVALIDDATA;
938  }
939  s->block_config = &at9_block_layout[block_config_idx];
940 
941  avctx->channel_layout = s->block_config->channel_layout;
944 
945  if (get_bits1(&gb)) {
946  av_log(avctx, AV_LOG_ERROR, "Incorrect verification bit!\n");
947  return AVERROR_INVALIDDATA;
948  }
949 
950  /* Average frame size in bytes */
951  s->avg_frame_size = get_bits(&gb, 11) + 1;
952 
953  superframe_idx = get_bits(&gb, 2);
954  if (superframe_idx & 1) {
955  av_log(avctx, AV_LOG_ERROR, "Invalid superframe index!\n");
956  return AVERROR_INVALIDDATA;
957  }
958 
959  s->frame_count = 1 << superframe_idx;
960  s->frame_log2 = at9_tab_sri_frame_log2[s->samplerate_idx];
961 
962  if (ff_mdct_init(&s->imdct, s->frame_log2 + 1, 1, 1.0f / 32768.0f))
963  return AVERROR(ENOMEM);
964 
966  if (!s->fdsp)
967  return AVERROR(ENOMEM);
968 
969  /* iMDCT window */
970  for (int i = 0; i < (1 << s->frame_log2); i++) {
971  const int len = 1 << s->frame_log2;
972  const float sidx = ( i + 0.5f) / len;
973  const float eidx = (len - i - 0.5f) / len;
974  const float s_c = sinf(sidx*M_PI - M_PI_2)*0.5f + 0.5f;
975  const float e_c = sinf(eidx*M_PI - M_PI_2)*0.5f + 0.5f;
976  s->imdct_win[i] = s_c / ((s_c * s_c) + (e_c * e_c));
977  }
978 
979  /* Allocation curve */
980  alloc_c_len = FF_ARRAY_ELEMS(at9_tab_b_dist);
981  for (int i = 1; i <= alloc_c_len; i++)
982  for (int j = 0; j < i; j++)
983  s->alloc_curve[i - 1][j] = at9_tab_b_dist[(j * alloc_c_len) / i];
984 
985  ff_thread_once(&static_table_init, atrac9_init_static);
986 
987  return 0;
988 }
989 
991  .name = "atrac9",
992  .long_name = NULL_IF_CONFIG_SMALL("ATRAC9 (Adaptive TRansform Acoustic Coding 9)"),
993  .type = AVMEDIA_TYPE_AUDIO,
994  .id = AV_CODEC_ID_ATRAC9,
995  .priv_data_size = sizeof(ATRAC9Context),
997  .close = atrac9_decode_close,
1002 };
atrac9_decode_close
static av_cold int atrac9_decode_close(AVCodecContext *avctx)
Definition: atrac9dec.c:833
ATRAC9ChannelData::q_coeffs_coarse
int32_t q_coeffs_coarse[256]
Definition: atrac9dec.c:49
AVCodec
AVCodec.
Definition: codec.h:202
AV_SAMPLE_FMT_FLTP
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition: samplefmt.h:69
skip_bits_long
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
Definition: get_bits.h:292
FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:42
coeff_vlc
static VLC coeff_vlc[2][8][4]
Definition: atrac9dec.c:107
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
ATRAC9ChannelData::coeffs
float coeffs[256]
Definition: atrac9dec.c:52
ATRAC9BlockData::is_signs
int is_signs[30]
Definition: atrac9dec.c:79
AVCodecContext::channel_layout
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:1043
mem_internal.h
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:992
av_lfg_init
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
Definition: lfg.c:32
cb
static double cb(void *priv, double x, double y)
Definition: vf_geq.c:215
HuffmanCodebook::size
const int size
Definition: atrac9tab.h:425
at9_band_ext_scales_m2
static const float at9_band_ext_scales_m2[]
Definition: atrac9tab.h:271
thread.h
read_scalefactors
static int read_scalefactors(ATRAC9Context *s, ATRAC9BlockData *b, ATRAC9ChannelData *c, GetBitContext *gb, int channel_idx, int first_in_pkt)
Definition: atrac9dec.c:259
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
tmp
static uint8_t tmp[11]
Definition: aes_ctr.c:26
at9_tab_samplerates
static const int at9_tab_samplerates[]
Definition: atrac9tab.h:116
av_clip_uintp2_c
static av_always_inline av_const unsigned av_clip_uintp2_c(int a, int p)
Clip a signed integer to an unsigned power of two range.
Definition: common.h:276
internal.h
AVPacket::data
uint8_t * data
Definition: packet.h:373
M_PI_2
#define M_PI_2
Definition: mathematics.h:55
ATRAC9BlockData::has_band_ext
int has_band_ext
Definition: atrac9dec.c:68
calc_codebook_idx
static void calc_codebook_idx(ATRAC9Context *s, ATRAC9BlockData *b, ATRAC9ChannelData *c)
Definition: atrac9dec.c:360
b
#define b
Definition: input.c:40
ATRAC9ChannelData
Definition: atrac9dec.c:36
data
const char data[16]
Definition: mxf.c:143
ATRAC9_COEFF_VLC_BITS
#define ATRAC9_COEFF_VLC_BITS
Definition: atrac9dec.c:34
at9_block_layout
static const ATRAC9BlockConfig at9_block_layout[]
Definition: atrac9tab.h:42
ff_mdct_init
#define ff_mdct_init
Definition: fft.h:153
get_vlc2
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
Definition: get_bits.h:798
base
uint8_t base
Definition: vp3data.h:141
ATRAC9ChannelData::precision_fine
int precision_fine[30]
Definition: atrac9dec.c:44
HuffmanCodebook::value_cnt
const int value_cnt
Definition: atrac9tab.h:426
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
ATRAC9Context::frame_count
int frame_count
Definition: atrac9dec.c:95
ATRAC9Context::avctx
AVCodecContext * avctx
Definition: atrac9dec.c:86
ATRAC9Context::lfg
AVLFG lfg
Definition: atrac9dec.c:90
ATRAC9ChannelData::precision_mask
int precision_mask[30]
Definition: atrac9dec.c:45
read_coeffs_fine
static void read_coeffs_fine(ATRAC9Context *s, ATRAC9BlockData *b, ATRAC9ChannelData *c, GetBitContext *gb)
Definition: atrac9dec.c:440
init
static int init
Definition: av_tx.c:47
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:468
ATRAC9Context
Definition: atrac9dec.c:85
ATRAC9Context::imdct
FFTContext imdct
Definition: atrac9dec.c:88
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:380
at9_tab_band_ext_cnt
static const uint8_t at9_tab_band_ext_cnt[][6]
Definition: atrac9tab.h:121
VLC_TYPE
#define VLC_TYPE
Definition: vlc.h:24
calc_precision
static void calc_precision(ATRAC9Context *s, ATRAC9BlockData *b, ATRAC9ChannelData *c)
Definition: atrac9dec.c:153
frames
if it could not because there are no more frames
Definition: filter_design.txt:266
GetBitContext
Definition: get_bits.h:62
ATRAC9Context::block
ATRAC9BlockData block[5]
Definition: atrac9dec.c:89
tab
static const struct twinvq_data tab
Definition: twinvq_data.h:10345
ATRAC9BlockData::grad_mode
int grad_mode
Definition: atrac9dec.c:73
AVCodecContext::flags
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:463
val
static double val(void *priv, double ch)
Definition: aeval.c:76
ATRAC9Context::alloc_curve
uint8_t alloc_curve[48][48]
Definition: atrac9dec.c:100
scale
static av_always_inline float scale(float x, float s)
Definition: vf_v360.c:1388
HuffmanCodebook::value_cnt_pow
const int value_cnt_pow
Definition: atrac9tab.h:427
ff_init_vlc_from_lengths
int ff_init_vlc_from_lengths(VLC *vlc_arg, int nb_bits, int nb_codes, const int8_t *lens, int lens_wrap, const void *symbols, int symbols_wrap, int symbols_size, int offset, int flags, void *logctx)
Build VLC decoding tables suitable for use with get_vlc2()
Definition: bitstream.c:381
scale_band_ext_coeffs
static void scale_band_ext_coeffs(ATRAC9ChannelData *c, float sf[6], const int s_unit, const int e_unit)
Definition: atrac9dec.c:531
ff_thread_once
static int ff_thread_once(char *control, void(*routine)(void))
Definition: thread.h:175
ATRAC9_BLOCK_TYPE_LFE
@ ATRAC9_BLOCK_TYPE_LFE
Definition: atrac9tab.h:32
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
av_cold
#define av_cold
Definition: attributes.h:90
parse_band_ext
static int parse_band_ext(ATRAC9Context *s, ATRAC9BlockData *b, GetBitContext *gb, int stereo)
Definition: atrac9dec.c:204
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:678
at9_tab_sri_max_bands
static const uint8_t at9_tab_sri_max_bands[]
Definition: atrac9tab.h:112
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:485
s
#define s(width, name)
Definition: cbs_vp9.c:257
at9_q_unit_to_codebookidx
static const uint8_t at9_q_unit_to_codebookidx[]
Definition: atrac9tab.h:107
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
lfg.h
fill_with_noise
static void fill_with_noise(ATRAC9Context *s, ATRAC9ChannelData *c, int start, int count)
Definition: atrac9dec.c:515
ATRAC9BlockConfig
Definition: atrac9tab.h:35
AV_CODEC_ID_ATRAC9
@ AV_CODEC_ID_ATRAC9
Definition: codec_id.h:511
av_bmg_get
void av_bmg_get(AVLFG *lfg, double out[2])
Get the next two numbers generated by a Box-Muller Gaussian generator using the random numbers issued...
Definition: lfg.c:49
HuffmanCodebook::value_bits
const int value_bits
Definition: atrac9tab.h:428
ff_atrac9_decoder
const AVCodec ff_atrac9_decoder
Definition: atrac9dec.c:990
ATRAC9Context::avg_frame_size
int avg_frame_size
Definition: atrac9dec.c:94
get_bits.h
ATRAC9BlockData::band_ext_q_unit
int band_ext_q_unit
Definition: atrac9dec.c:70
bands
static const float bands[]
Definition: af_superequalizer.c:56
at9_band_ext_scales_m0
static const float at9_band_ext_scales_m0[][5][32]
Definition: atrac9tab.h:184
f
#define f(width, name)
Definition: cbs_vp9.c:255
at9_sfb_a_tab
static const uint8_t at9_sfb_a_tab[][2]
Definition: atrac9tab.h:376
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:65
AV_ONCE_INIT
#define AV_ONCE_INIT
Definition: thread.h:173
ATRAC9_SF_VLC_BITS
#define ATRAC9_SF_VLC_BITS
Definition: atrac9dec.c:33
flush
static void flush(AVCodecContext *avctx)
Definition: aacdec_template.c:593
NULL
#define NULL
Definition: coverity.c:32
HuffmanCodebook
Definition: atrac9tab.h:424
at9_huffman_sf_unsigned
static const HuffmanCodebook at9_huffman_sf_unsigned[]
Definition: atrac9tab.h:431
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:499
src
#define src
Definition: vp8dsp.c:255
ATRAC9Context::frame_log2
int frame_log2
Definition: atrac9dec.c:93
atrac9_decode_init
static av_cold int atrac9_decode_init(AVCodecContext *avctx)
Definition: atrac9dec.c:897
ATRAC9ChannelData::q_coeffs_fine
int32_t q_coeffs_fine[256]
Definition: atrac9dec.c:50
parse_gradient
static int parse_gradient(ATRAC9Context *s, ATRAC9BlockData *b, GetBitContext *gb)
Definition: atrac9dec.c:109
ATRAC9BlockData::q_unit_cnt_prev
int q_unit_cnt_prev
Definition: atrac9dec.c:62
sinf
#define sinf(x)
Definition: libm.h:419
AVOnce
#define AVOnce
Definition: thread.h:172
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
ATRAC9BlockData::gradient
int gradient[31]
Definition: atrac9dec.c:75
av_get_channel_layout_nb_channels
int av_get_channel_layout_nb_channels(uint64_t channel_layout)
Return the number of channels in the channel layout.
Definition: channel_layout.c:226
float_dsp.h
for
for(j=16;j >0;--j)
Definition: h264pred_template.c:469
atrac9_init_static
static av_cold void atrac9_init_static(void)
Definition: atrac9dec.c:858
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:109
VLC::table_allocated
int table_allocated
Definition: vlc.h:29
AVLFG
Context structure for the Lagged Fibonacci PRNG.
Definition: lfg.h:33
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1652
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AVPacket::size
int size
Definition: packet.h:374
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
apply_band_extension
static void apply_band_extension(ATRAC9Context *s, ATRAC9BlockData *b, const int stereo)
Definition: atrac9dec.c:542
ATRAC9ChannelData::band_ext
int band_ext
Definition: atrac9dec.c:37
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1000
ATRAC9Context::fdsp
AVFloatDSPContext * fdsp
Definition: atrac9dec.c:87
ff_mdct_end
#define ff_mdct_end
Definition: fft.h:154
ATRAC9_BLOCK_TYPE_CPE
@ ATRAC9_BLOCK_TYPE_CPE
Definition: atrac9tab.h:31
avg
#define avg(a, b, c, d)
Definition: colorspacedsp_template.c:28
AVFloatDSPContext
Definition: float_dsp.h:24
ATRAC9ChannelData::band_ext_data
int band_ext_data[4]
Definition: atrac9dec.c:39
dequantize
static void dequantize(ATRAC9Context *s, ATRAC9BlockData *b, ATRAC9ChannelData *c)
Definition: atrac9dec.c:458
ATRAC9BlockData::grad_boundary
int grad_boundary
Definition: atrac9dec.c:74
at9_tab_band_q_unit_map
static const uint8_t at9_tab_band_q_unit_map[]
Definition: atrac9tab.h:93
at9_huffman_sf_signed
static const HuffmanCodebook at9_huffman_sf_signed[]
Definition: atrac9tab.h:441
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
skip_bits1
static void skip_bits1(GetBitContext *s)
Definition: get_bits.h:539
version
version
Definition: libkvazaar.c:313
atrac9_decode_frame
static int atrac9_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: atrac9dec.c:789
ATRAC9ChannelData::scalefactors
int32_t scalefactors[31]
Definition: atrac9dec.c:40
at9_q_unit_to_coeff_idx
static const int at9_q_unit_to_coeff_idx[]
Definition: atrac9tab.h:102
M_PI
#define M_PI
Definition: mathematics.h:52
AVCodecContext::channels
int channels
number of audio channels
Definition: avcodec.h:993
at9_quant_step_coarse
static const float at9_quant_step_coarse[]
Definition: atrac9tab.h:306
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem.h:116
ATRAC9BlockData::stereo_q_unit
int stereo_q_unit
Definition: atrac9dec.c:65
ATRAC9ChannelData::scalefactors_prev
int32_t scalefactors_prev[31]
Definition: atrac9dec.c:41
ATRAC9BlockData::cpe_base_channel
int cpe_base_channel
Definition: atrac9dec.c:78
ATRAC9Context::block_config
const ATRAC9BlockConfig * block_config
Definition: atrac9dec.c:97
FFTContext
Definition: fft.h:75
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
at9_tab_band_ext_lengths
static const uint8_t at9_tab_band_ext_lengths[][6][4]
Definition: atrac9tab.h:141
ATRAC9Context::imdct_win
float imdct_win[256]
Definition: atrac9dec.c:101
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:484
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:50
atrac9_decode_block
static int atrac9_decode_block(ATRAC9Context *s, GetBitContext *gb, ATRAC9BlockData *b, AVFrame *frame, int frame_idx, int block_idx)
Definition: atrac9dec.c:644
ATRAC9Context::temp
float temp[256]
Definition: atrac9dec.c:103
delta
float delta
Definition: vorbis_enc_data.h:430
at9_band_ext_scales_m3
static const float at9_band_ext_scales_m3[][2]
Definition: atrac9tab.h:290
at9_scalefactor_c
static const float at9_scalefactor_c[]
Definition: atrac9tab.h:324
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
at9_band_ext_scales_m4
static const float at9_band_ext_scales_m4[]
Definition: atrac9tab.h:301
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:209
len
int len
Definition: vorbis_enc_data.h:426
atrac9_init_vlc
static av_cold void atrac9_init_vlc(VLC *vlc, int nb_bits, int nb_codes, const uint8_t(**tab)[2], unsigned *buf_offset, int offset)
Definition: atrac9dec.c:843
ATRAC9BlockData::reuseable
int reuseable
Definition: atrac9dec.c:81
ATRAC9ChannelData::precision_coarse
int precision_coarse[30]
Definition: atrac9dec.c:43
ATRAC9ChannelData::codebookset
int codebookset[30]
Definition: atrac9dec.c:47
ret
ret
Definition: filter_design.txt:187
INIT_VLC_STATIC_OVERLONG
#define INIT_VLC_STATIC_OVERLONG
Definition: vlc.h:96
AVCodecContext::block_align
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs.
Definition: avcodec.h:1029
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
align_get_bits
static const uint8_t * align_get_bits(GetBitContext *s)
Definition: get_bits.h:694
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
at9_coeffs_tab
static const uint8_t at9_coeffs_tab[][2]
Definition: atrac9tab.h:450
vlc_buf
static VLC_TYPE vlc_buf[16716][2]
Definition: clearvideo.c:86
ATRAC9BlockData
Definition: atrac9dec.c:56
fft.h
AVCodecContext
main external API structure.
Definition: avcodec.h:383
ATRAC9BlockData::has_band_ext_data
int has_band_ext_data
Definition: atrac9dec.c:69
atrac9tab.h
channel_layout.h
sf_vlc
static VLC sf_vlc[2][8]
Definition: atrac9dec.c:106
mode
mode
Definition: ebur128.h:83
VLC
Definition: vlc.h:26
at9_quant_step_fine
static const float at9_quant_step_fine[]
Definition: atrac9tab.h:315
sign_extend
static av_const int sign_extend(int val, unsigned bits)
Definition: mathops.h:130
atrac9_decode_flush
static void atrac9_decode_flush(AVCodecContext *avctx)
Definition: atrac9dec.c:819
apply_scalefactors
static void apply_scalefactors(ATRAC9Context *s, ATRAC9BlockData *b, const int stereo)
Definition: atrac9dec.c:499
values
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return values
Definition: filter_design.txt:263
ATRAC9Context::samplerate_idx
int samplerate_idx
Definition: atrac9dec.c:96
read_coeffs_coarse
static void read_coeffs_coarse(ATRAC9Context *s, ATRAC9BlockData *b, ATRAC9ChannelData *c, GetBitContext *gb)
Definition: atrac9dec.c:404
at9_tab_sf_weights
static const uint8_t at9_tab_sf_weights[][32]
Definition: atrac9tab.h:335
ATRAC9ChannelData::q_unit_cnt
int q_unit_cnt
Definition: atrac9dec.c:38
VLC::table_size
int table_size
Definition: vlc.h:29
at9_tab_band_ext_group
static const uint8_t at9_tab_band_ext_group[][3]
Definition: atrac9tab.h:130
AV_CODEC_CAP_SUBFRAMES
#define AV_CODEC_CAP_SUBFRAMES
Codec can output multiple frames per AVPacket Normally demuxers return one frame at a time,...
Definition: codec.h:100
AV_CODEC_FLAG_BITEXACT
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:272
ATRAC9BlockData::q_unit_cnt
int q_unit_cnt
Definition: atrac9dec.c:61
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:410
AVPacket
This structure stores compressed data.
Definition: packet.h:350
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
avpriv_float_dsp_alloc
av_cold AVFloatDSPContext * avpriv_float_dsp_alloc(int bit_exact)
Allocate a float DSP context.
Definition: float_dsp.c:135
at9_sfb_b_tab
static const uint8_t at9_sfb_b_tab[][2]
Definition: atrac9tab.h:407
int32_t
int32_t
Definition: audioconvert.c:56
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
ATRAC9BlockData::band_count
int band_count
Definition: atrac9dec.c:60
at9_tab_b_dist
static const uint8_t at9_tab_b_dist[]
Definition: atrac9tab.h:370
VLC::table
VLC_TYPE(* table)[2]
code, bits
Definition: vlc.h:28
channel
channel
Definition: ebur128.h:39
ATRAC9ChannelData::prev_win
float prev_win[128]
Definition: atrac9dec.c:53
at9_huffman_coeffs
static const HuffmanCodebook at9_huffman_coeffs[][8][4]
Definition: atrac9tab.h:1293
at9_tab_sri_frame_log2
static const uint8_t at9_tab_sri_frame_log2[]
Definition: atrac9tab.h:89
apply_intensity_stereo
static void apply_intensity_stereo(ATRAC9Context *s, ATRAC9BlockData *b, const int stereo)
Definition: atrac9dec.c:478
min
float min
Definition: vorbis_enc_data.h:429
at9_q_unit_to_coeff_cnt
static const uint8_t at9_q_unit_to_coeff_cnt[]
Definition: atrac9tab.h:97