Commit 9289a32a authored by Kostya Shishkov's avatar Kostya Shishkov

Fix AAC data smuggling:

aactab.h declares only 316 of 428 elements in ff_aac_pow2sf_tab[]

Originally committed as revision 16805 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 811bfa76
...@@ -66,9 +66,9 @@ extern const uint16_t ff_aac_spectral_sizes[11]; ...@@ -66,9 +66,9 @@ extern const uint16_t ff_aac_spectral_sizes[11];
extern const float *ff_aac_codebook_vectors[]; extern const float *ff_aac_codebook_vectors[];
#if CONFIG_HARDCODED_TABLES #if CONFIG_HARDCODED_TABLES
extern const float ff_aac_pow2sf_tab[316]; extern const float ff_aac_pow2sf_tab[428];
#else #else
extern float ff_aac_pow2sf_tab[316]; extern float ff_aac_pow2sf_tab[428];
#endif /* CONFIG_HARDCODED_TABLES */ #endif /* CONFIG_HARDCODED_TABLES */
#endif /* AVCODEC_AACTAB_H */ #endif /* AVCODEC_AACTAB_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment