diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-26 13:44:09 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-26 13:44:09 +0000 |
commit | 9289a32a8eb3e8c59b1f4b4c296420fee9faac96 (patch) | |
tree | 9e37be7f82d30db5eb904a034eab23da33611e42 | |
parent | 811bfa76ce88720c7160f5075dc84a246ff2481e (diff) | |
download | ffmpeg-9289a32a8eb3e8c59b1f4b4c296420fee9faac96.tar.gz |
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
-rw-r--r-- | libavcodec/aactab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index 2a8491bc88..67b700dfc1 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -66,9 +66,9 @@ extern const uint16_t ff_aac_spectral_sizes[11]; extern const float *ff_aac_codebook_vectors[]; #if CONFIG_HARDCODED_TABLES -extern const float ff_aac_pow2sf_tab[316]; +extern const float ff_aac_pow2sf_tab[428]; #else -extern float ff_aac_pow2sf_tab[316]; +extern float ff_aac_pow2sf_tab[428]; #endif /* CONFIG_HARDCODED_TABLES */ #endif /* AVCODEC_AACTAB_H */ |