diff options
author | foo86 <foobaz86@gmail.com> | 2016-05-26 14:29:35 +0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-05-26 13:32:48 -0300 |
commit | a0f76b825c8105acb4428ea60146687e90cfdc83 (patch) | |
tree | c2c07e452878fe384152644d6f0dcf157c8eb6fe /libavcodec/dca.h | |
parent | d93495c95411b95cfc5c050dbabfcdff1c10890a (diff) | |
download | ffmpeg-a0f76b825c8105acb4428ea60146687e90cfdc83.tar.gz |
avcodec/dca: move EXSS sampling frequency arrays to dca.c
Avoids unwanted parser dependency on dcadata.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dca.h')
-rw-r--r-- | libavcodec/dca.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/dca.h b/libavcodec/dca.h index a1ac763105..bd96bc9ee3 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -154,6 +154,9 @@ enum DCADownMixType { extern av_export const uint32_t avpriv_dca_sample_rates[16]; +extern const uint32_t ff_dca_sampling_freqs[16]; +extern const uint8_t ff_dca_freq_ranges[16]; + /** * Convert bitstream to one representation based on sync marker */ |