1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-29 12:54:10 +02:00
Files
FFmpeg/libavcodec/dcadata.h
T

78 lines
2.5 KiB
C
Raw Normal View History

2007-02-27 06:30:40 +00:00
/*
* DCA compatible decoder data
*
2007-02-27 09:56:09 +00:00
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
2007-02-27 06:30:40 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
2007-02-27 09:56:09 +00:00
* version 2.1 of the License, or (at your option) any later version.
2007-02-27 06:30:40 +00:00
*
2007-02-27 09:56:09 +00:00
* FFmpeg is distributed in the hope that it will be useful,
2007-02-27 06:30:40 +00:00
* 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
2007-02-27 09:56:09 +00:00
* License along with FFmpeg; if not, write to the Free Software
2007-02-27 06:30:40 +00:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_DCADATA_H
#define AVCODEC_DCADATA_H
2007-06-17 00:01:30 +00:00
2007-06-16 22:59:13 +00:00
#include <stdint.h>
2014-09-08 13:40:26 -04:00
extern const uint32_t ff_dca_bit_rates[32];
2007-06-16 22:59:13 +00:00
extern const uint8_t ff_dca_channels[16];
2007-02-27 06:30:40 +00:00
extern const uint8_t ff_dca_bits_per_sample[7];
2007-02-27 06:30:40 +00:00
extern const int16_t ff_dca_adpcm_vb[4096][4];
2007-02-27 06:30:40 +00:00
extern const uint32_t ff_dca_scale_factor_quant6[64];
extern const uint32_t ff_dca_scale_factor_quant7[128];
2007-02-27 06:30:40 +00:00
extern const uint32_t ff_dca_lossy_quant[32];
extern const float ff_dca_lossy_quant_d[32];
2007-02-27 06:30:40 +00:00
extern const uint32_t ff_dca_lossless_quant[32];
extern const float ff_dca_lossless_quant_d[32];
2007-02-27 06:30:40 +00:00
extern const int8_t ff_dca_high_freq_vq[1024][32];
2007-02-27 06:30:40 +00:00
extern const float ff_dca_fir_32bands_perfect[512];
extern const float ff_dca_fir_32bands_nonperfect[512];
2007-02-27 06:30:40 +00:00
extern const float ff_dca_lfe_fir_64[256];
extern const float ff_dca_lfe_fir_128[256];
2014-02-11 11:45:27 +01:00
extern const float ff_dca_lfe_xll_fir_64[256];
extern const float ff_dca_fir_64bands[1024];
2007-02-27 06:30:40 +00:00
2014-02-11 11:45:27 +01:00
#define FF_DCA_DMIXTABLE_SIZE 242
#define FF_DCA_INV_DMIXTABLE_SIZE 201
extern const uint16_t ff_dca_dmixtable[FF_DCA_DMIXTABLE_SIZE];
extern const uint32_t ff_dca_inv_dmixtable[FF_DCA_INV_DMIXTABLE_SIZE];
2007-02-27 06:30:40 +00:00
extern const float ff_dca_default_coeffs[10][6][2];
2007-02-27 06:30:40 +00:00
extern const uint32_t ff_dca_map_xxch_to_native[28];
extern const int ff_dca_ext_audio_descr_mask[8];
extern const uint64_t ff_dca_core_channel_layout[16];
2014-02-11 11:45:27 +01:00
extern const int32_t ff_dca_sampling_freqs[16];
extern const int8_t ff_dca_lfe_index[16];
2007-02-27 06:30:40 +00:00
extern const int8_t ff_dca_channel_reorder_lfe[16][9];
extern const int8_t ff_dca_channel_reorder_lfe_xch[16][9];
extern const int8_t ff_dca_channel_reorder_nolfe[16][9];
extern const int8_t ff_dca_channel_reorder_nolfe_xch[16][9];
2007-02-27 06:30:40 +00:00
extern const uint16_t ff_dca_vlc_offs[63];
2014-09-22 18:05:40 +02:00
#endif /* AVCODEC_DCADATA_H */