diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-11-12 05:34:32 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-11-12 05:34:32 +0000 |
commit | 0611f675255797730e2ae51c26d08de9c4bd452b (patch) | |
tree | 500593e15fde6a3f215ac2f0ece42c45df5a4fe2 | |
parent | 8455e8c7c0ad183e8904e583def669ba4b7b4c90 (diff) | |
download | ffmpeg-0611f675255797730e2ae51c26d08de9c4bd452b.tar.gz |
10l: vorbisdec: declare dy
Originally committed as revision 25725 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vorbis_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index 284b8dfaca..3305dc156f 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -1146,7 +1146,7 @@ static int vorbis_floor1_decode(vorbis_context *vc, int_fast16_t book; uint_fast16_t offset; uint_fast16_t i,j; - int_fast16_t adx, ady, dx, off, predicted; + int_fast16_t adx, ady, dx, dy, off, predicted; int_fast32_t err; |