avcodec/dcaenc: move channel reordering tables to dcaenc.h
DCA core decoder no longer uses fixed tables for channel reordering. Move them into private encoder header (and drop ff_dca_ prefix). Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
de28e73cce
commit
b286ff69c0
4 changed files with 45 additions and 50 deletions
|
|
@ -8730,48 +8730,6 @@ const int32_t ff_dca_sampling_freqs[16] = {
|
|||
176400, 352800, 12000, 24000, 48000, 96000, 192000, 384000,
|
||||
};
|
||||
|
||||
const int8_t ff_dca_lfe_index[16] = {
|
||||
1, 2, 2, 2, 2, 3, 2, 3, 2, 3, 2, 3, 1, 3, 2, 3
|
||||
};
|
||||
|
||||
const int8_t ff_dca_channel_reorder_lfe[16][9] = {
|
||||
{ 0, -1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 2, 0, 1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, 3, -1, -1, -1, -1, -1, -1 },
|
||||
{ 2, 0, 1, 4, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, 3, 4, -1, -1, -1, -1, -1 },
|
||||
{ 2, 0, 1, 4, 5, -1, -1, -1, -1 },
|
||||
{ 3, 4, 0, 1, 5, 6, -1, -1, -1 },
|
||||
{ 2, 0, 1, 4, 5, 6, -1, -1, -1 },
|
||||
{ 0, 6, 4, 5, 2, 3, -1, -1, -1 },
|
||||
{ 4, 2, 5, 0, 1, 6, 7, -1, -1 },
|
||||
{ 5, 6, 0, 1, 7, 3, 8, 4, -1 },
|
||||
{ 4, 2, 5, 0, 1, 6, 8, 7, -1 },
|
||||
};
|
||||
|
||||
const int8_t ff_dca_channel_reorder_nolfe[16][9] = {
|
||||
{ 0, -1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, -1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 2, 0, 1, -1, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, 2, -1, -1, -1, -1, -1, -1 },
|
||||
{ 2, 0, 1, 3, -1, -1, -1, -1, -1 },
|
||||
{ 0, 1, 2, 3, -1, -1, -1, -1, -1 },
|
||||
{ 2, 0, 1, 3, 4, -1, -1, -1, -1 },
|
||||
{ 2, 3, 0, 1, 4, 5, -1, -1, -1 },
|
||||
{ 2, 0, 1, 3, 4, 5, -1, -1, -1 },
|
||||
{ 0, 5, 3, 4, 1, 2, -1, -1, -1 },
|
||||
{ 3, 2, 4, 0, 1, 5, 6, -1, -1 },
|
||||
{ 4, 5, 0, 1, 6, 2, 7, 3, -1 },
|
||||
{ 3, 2, 4, 0, 1, 5, 7, 6, -1 },
|
||||
};
|
||||
|
||||
const uint16_t ff_dca_vlc_offs[63] = {
|
||||
0, 512, 640, 768, 1282, 1794, 2436, 3080, 3770, 4454, 5364,
|
||||
5372, 5380, 5388, 5392, 5396, 5412, 5420, 5428, 5460, 5492, 5508,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue