dcadata.h 3.88 KB
Newer Older
Kostya Shishkov's avatar
Kostya Shishkov committed
1 2 3
/*
 * DCA compatible decoder data
 *
4 5 6
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
Kostya Shishkov's avatar
Kostya Shishkov committed
7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
Kostya Shishkov's avatar
Kostya Shishkov committed
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
Kostya Shishkov's avatar
Kostya Shishkov committed
12 13 14 15 16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with FFmpeg; if not, write to the Free Software
Kostya Shishkov's avatar
Kostya Shishkov committed
18 19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21 22
#ifndef AVCODEC_DCADATA_H
#define AVCODEC_DCADATA_H
23

24
#include <stdint.h>
25

26 27
#include "dcahuff.h"

28 29 30
#define DCA_ADPCM_COEFFS        4
#define DCA_ADPCM_VQCODEBOOK_SZ 4096

31
extern const uint32_t ff_dca_bit_rates[32];
32

33
extern const uint8_t ff_dca_channels[16];
Kostya Shishkov's avatar
Kostya Shishkov committed
34

foo86's avatar
foo86 committed
35
extern const uint8_t ff_dca_dmix_primary_nch[8];
Kostya Shishkov's avatar
Kostya Shishkov committed
36

37 38 39
extern const uint8_t ff_dca_quant_index_sel_nbits[DCA_CODE_BOOKS];
extern const uint8_t ff_dca_quant_index_group_size[DCA_CODE_BOOKS];

40
extern const int16_t ff_dca_adpcm_vb[DCA_ADPCM_VQCODEBOOK_SZ][DCA_ADPCM_COEFFS];
Kostya Shishkov's avatar
Kostya Shishkov committed
41

42 43
extern const uint32_t ff_dca_scale_factor_quant6[64];
extern const uint32_t ff_dca_scale_factor_quant7[128];
Kostya Shishkov's avatar
Kostya Shishkov committed
44

foo86's avatar
foo86 committed
45 46 47 48 49 50
extern const uint32_t ff_dca_joint_scale_factors[129];

extern const uint32_t ff_dca_scale_factor_adj[4];

extern const uint32_t ff_dca_quant_levels[32];

51
extern const uint32_t ff_dca_lossy_quant[32];
Kostya Shishkov's avatar
Kostya Shishkov committed
52

53
extern const uint32_t ff_dca_lossless_quant[32];
Kostya Shishkov's avatar
Kostya Shishkov committed
54

55
extern const int8_t ff_dca_high_freq_vq[1024][32];
Kostya Shishkov's avatar
Kostya Shishkov committed
56

57 58
extern const float ff_dca_fir_32bands_perfect[512];
extern const float ff_dca_fir_32bands_nonperfect[512];
Kostya Shishkov's avatar
Kostya Shishkov committed
59

60 61
extern const float ff_dca_lfe_fir_64[256];
extern const float ff_dca_lfe_fir_128[256];
62
extern const float ff_dca_fir_64bands[1024];
Kostya Shishkov's avatar
Kostya Shishkov committed
63

foo86's avatar
foo86 committed
64 65 66 67 68 69 70 71
extern const int32_t ff_dca_fir_32bands_perfect_fixed[512];
extern const int32_t ff_dca_fir_32bands_nonperfect_fixed[512];
extern const int32_t ff_dca_lfe_fir_64_fixed[256];
extern const int32_t ff_dca_fir_64bands_fixed[1024];

#define FF_DCA_DMIXTABLE_SIZE       242U
#define FF_DCA_INV_DMIXTABLE_SIZE   201U
#define FF_DCA_DMIXTABLE_OFFSET     (FF_DCA_DMIXTABLE_SIZE - FF_DCA_INV_DMIXTABLE_SIZE)
72 73 74

extern const uint16_t ff_dca_dmixtable[FF_DCA_DMIXTABLE_SIZE];
extern const uint32_t ff_dca_inv_dmixtable[FF_DCA_INV_DMIXTABLE_SIZE];
Kostya Shishkov's avatar
Kostya Shishkov committed
75

foo86's avatar
foo86 committed
76 77 78 79
extern const uint16_t ff_dca_xll_refl_coeff[128];

extern const int32_t ff_dca_xll_band_coeff[20];

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
extern const uint16_t ff_dca_avg_g3_freqs[3];

extern const uint16_t ff_dca_fst_amp[44];

extern const uint8_t ff_dca_freq_to_sb[32];

extern const int8_t ff_dca_ph0_shift[8];

extern const uint8_t ff_dca_grid_1_to_scf[11];
extern const uint8_t ff_dca_grid_2_to_scf[3];

extern const uint8_t ff_dca_scf_to_grid_1[32];
extern const uint8_t ff_dca_scf_to_grid_2[32];

extern const uint8_t ff_dca_grid_1_weights[12][32];

extern const uint8_t ff_dca_sb_reorder[8][8];

extern const int8_t ff_dca_lfe_delta_index_16[8];
extern const int8_t ff_dca_lfe_delta_index_24[32];

extern const uint16_t ff_dca_rsd_pack_5_in_8[256];
extern const uint8_t ff_dca_rsd_pack_3_in_7[128][3];

extern const float ff_dca_rsd_level_2a[2];
extern const float ff_dca_rsd_level_2b[2];
extern const float ff_dca_rsd_level_3[3];
extern const float ff_dca_rsd_level_5[5];
extern const float ff_dca_rsd_level_8[8];
extern const float ff_dca_rsd_level_16[16];

extern const float ff_dca_synth_env[32];

extern const float ff_dca_corr_cf[32][11];

extern const float ff_dca_quant_amp[57];

extern const float ff_dca_st_coeff[34];

extern const float ff_dca_long_window[128];

extern const float ff_dca_lfe_step_size_16[101];
extern const float ff_dca_lfe_step_size_24[144];

extern const float ff_dca_bank_coeff[10];
extern const float ff_dca_lfe_iir[5][4];

127
#endif /* AVCODEC_DCADATA_H */