]> git.sesse.net Git - ffmpeg/blob - libavcodec/dcadata.h
avcodec/nvenc: remove usage of deprecated fields
[ffmpeg] / libavcodec / dcadata.h
1 /*
2  * DCA compatible decoder data
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef AVCODEC_DCADATA_H
22 #define AVCODEC_DCADATA_H
23
24 #include <stdint.h>
25
26 #include "dcahuff.h"
27
28 #define DCA_ADPCM_COEFFS        4
29 #define DCA_ADPCM_VQCODEBOOK_SZ 4096
30
31 extern const uint32_t ff_dca_bit_rates[32];
32
33 extern const uint8_t ff_dca_channels[16];
34
35 extern const uint8_t ff_dca_bits_per_sample[8];
36
37 extern const uint8_t ff_dca_dmix_primary_nch[8];
38
39 extern const uint8_t ff_dca_quant_index_sel_nbits[DCA_CODE_BOOKS];
40 extern const uint8_t ff_dca_quant_index_group_size[DCA_CODE_BOOKS];
41
42 extern const int16_t ff_dca_adpcm_vb[DCA_ADPCM_VQCODEBOOK_SZ][DCA_ADPCM_COEFFS];
43
44 extern const uint32_t ff_dca_scale_factor_quant6[64];
45 extern const uint32_t ff_dca_scale_factor_quant7[128];
46
47 extern const uint32_t ff_dca_joint_scale_factors[129];
48
49 extern const uint32_t ff_dca_scale_factor_adj[4];
50
51 extern const uint32_t ff_dca_quant_levels[32];
52
53 extern const uint32_t ff_dca_lossy_quant[32];
54
55 extern const uint32_t ff_dca_lossless_quant[32];
56
57 extern const int8_t ff_dca_high_freq_vq[1024][32];
58
59 extern const float ff_dca_fir_32bands_perfect[512];
60 extern const float ff_dca_fir_32bands_nonperfect[512];
61
62 extern const float ff_dca_lfe_fir_64[256];
63 extern const float ff_dca_lfe_fir_128[256];
64 extern const float ff_dca_fir_64bands[1024];
65
66 extern const int32_t ff_dca_fir_32bands_perfect_fixed[512];
67 extern const int32_t ff_dca_fir_32bands_nonperfect_fixed[512];
68 extern const int32_t ff_dca_lfe_fir_64_fixed[256];
69 extern const int32_t ff_dca_fir_64bands_fixed[1024];
70
71 #define FF_DCA_DMIXTABLE_SIZE       242U
72 #define FF_DCA_INV_DMIXTABLE_SIZE   201U
73 #define FF_DCA_DMIXTABLE_OFFSET     (FF_DCA_DMIXTABLE_SIZE - FF_DCA_INV_DMIXTABLE_SIZE)
74
75 extern const uint16_t ff_dca_dmixtable[FF_DCA_DMIXTABLE_SIZE];
76 extern const uint32_t ff_dca_inv_dmixtable[FF_DCA_INV_DMIXTABLE_SIZE];
77
78 extern const uint16_t ff_dca_xll_refl_coeff[128];
79
80 extern const int32_t ff_dca_xll_band_coeff[20];
81
82 extern const uint16_t ff_dca_avg_g3_freqs[3];
83
84 extern const uint16_t ff_dca_fst_amp[44];
85
86 extern const uint8_t ff_dca_freq_to_sb[32];
87
88 extern const int8_t ff_dca_ph0_shift[8];
89
90 extern const uint8_t ff_dca_grid_1_to_scf[11];
91 extern const uint8_t ff_dca_grid_2_to_scf[3];
92
93 extern const uint8_t ff_dca_scf_to_grid_1[32];
94 extern const uint8_t ff_dca_scf_to_grid_2[32];
95
96 extern const uint8_t ff_dca_grid_1_weights[12][32];
97
98 extern const uint8_t ff_dca_sb_reorder[8][8];
99
100 extern const int8_t ff_dca_lfe_delta_index_16[8];
101 extern const int8_t ff_dca_lfe_delta_index_24[32];
102
103 extern const uint16_t ff_dca_rsd_pack_5_in_8[256];
104 extern const uint8_t ff_dca_rsd_pack_3_in_7[128][3];
105
106 extern const float ff_dca_rsd_level_2a[2];
107 extern const float ff_dca_rsd_level_2b[2];
108 extern const float ff_dca_rsd_level_3[3];
109 extern const float ff_dca_rsd_level_5[5];
110 extern const float ff_dca_rsd_level_8[8];
111 extern const float ff_dca_rsd_level_16[16];
112
113 extern const float ff_dca_synth_env[32];
114
115 extern const float ff_dca_corr_cf[32][11];
116
117 extern const float ff_dca_quant_amp[57];
118
119 extern const float ff_dca_st_coeff[34];
120
121 extern const float ff_dca_long_window[128];
122
123 extern const float ff_dca_lfe_step_size_16[101];
124 extern const float ff_dca_lfe_step_size_24[144];
125
126 extern const float ff_dca_bank_coeff[10];
127 extern const float ff_dca_lfe_iir[5][4];
128
129 #endif /* AVCODEC_DCADATA_H */