diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-11-20 03:34:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-11-20 03:46:43 +0100 |
commit | 03a34ef7a9259cefc673dcbd9d098bc15c99eda8 (patch) | |
tree | 5c457f203a0a10d852e42b4e637243641b27a64f /libavcodec/sbr.h | |
parent | 1ed7fcd42af956979abf4e32cd3c9ee17622bbcb (diff) | |
download | ffmpeg-03a34ef7a9259cefc673dcbd9d098bc15c99eda8.tar.gz |
avcodec/sbr: fix copy and paste error
Found-by: Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/sbr.h')
-rw-r--r-- | libavcodec/sbr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sbr.h b/libavcodec/sbr.h index f22c47501b..4a94c4a60b 100644 --- a/libavcodec/sbr.h +++ b/libavcodec/sbr.h @@ -99,7 +99,7 @@ typedef struct SBRData { uint8_t env_facs_q[6][48]; AAC_FLOAT env_facs[6][48]; ///Noise scalefactors - uint8_t noise_facs_q[6][48]; + uint8_t noise_facs_q[3][5]; AAC_FLOAT noise_facs[3][5]; ///Envelope time borders uint8_t t_env[8]; |