diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-03-09 20:46:41 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-03-09 20:46:41 +0000 |
commit | ecc1f8c3c8875e31e7cb9b7d9229b1674e1be736 (patch) | |
tree | ef269cba49429992b0637502835974be1b241d3e /libavcodec/sbr.h | |
parent | 46751a65e384248631aa000f8d5e04e695db612a (diff) | |
download | ffmpeg-ecc1f8c3c8875e31e7cb9b7d9229b1674e1be736.tar.gz |
aacsbr: Make the previous value of bs_num_env local to read_sbr_data().
Originally committed as revision 22409 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 3025860d7e..10a5e4f72b 100644 --- a/libavcodec/sbr.h +++ b/libavcodec/sbr.h @@ -62,7 +62,7 @@ typedef struct { */ unsigned bs_frame_class; unsigned bs_add_harmonic_flag; - unsigned bs_num_env[2]; + unsigned bs_num_env; uint8_t bs_freq_res[7]; unsigned bs_num_noise; uint8_t bs_df_env[5]; |