diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-06-20 13:00:24 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-06-20 13:00:24 +0000 |
commit | 4233ce315cf67abac09380ba7f95df07274bf577 (patch) | |
tree | d47776a2cb1040e0afafe06050934d589c8c821e | |
parent | 2c4a10134ef4c690a47bcb7f1a5c9a72e90ec118 (diff) | |
download | ffmpeg-4233ce315cf67abac09380ba7f95df07274bf577.tar.gz |
Fix breakage in compilation with --disable-mpegaudio-hp introduced in
r23646.
Originally committed as revision 23656 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mpegaudiodec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 5b4122f1b2..e6a33fb925 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -926,6 +926,7 @@ void ff_mpa_synth_filter(MPA_INT *synth_buf_ptr, int *synth_buf_offset, int offset; #if FRAC_BITS <= 15 int32_t tmp[32]; + int j; #endif offset = *synth_buf_offset; |