From: Paul B Mahol <[email protected]> This change copied from the ffmpeg branch at https://github.com/richardpl/FFmpeg/commits/xll
Signed-off-by: Niels Möller <[email protected]> --- libavcodec/dcadata.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavcodec/dcadata.h b/libavcodec/dcadata.h index 24ae4ef..d40dbe5 100644 --- a/libavcodec/dcadata.h +++ b/libavcodec/dcadata.h @@ -7595,6 +7595,11 @@ static const float dca_default_coeffs[10][6][2] = { { { 0.501187, 0.501187 }, { 0.707107, 0.000000 }, { 0.000000, 0.707107 }, { 0.501187, 0.000000 }, { 0.000000, 0.501187 }, { 0.000000, 0.000000 }, }, // C + L + R + SL + SR [LFE] }; +static const int32_t dca_sampling_freqs[16] = { + 8000, 16000, 32000, 64000, 128000, 22050, 44100, 88200, + 176400, 352800, 12000, 24000, 48000, 96000, 192000, 384000, +}; + /* downmix coeffs TABLE 9 -- 1.8.3.2 -- Niels Möller. PGP-encrypted email is preferred. Keyid C0B98E26. Internet email is subject to wholesale government surveillance. _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
