Commit 091607c9 authored by kostya's avatar kostya

Fix AAC data smuggling:

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



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16805 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8bb9107f
...@@ -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