diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-06-30 03:17:31 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-06-30 03:17:31 +0000 |
commit | c436ff41d27cff065c0f52e137f7e128e386ab78 (patch) | |
tree | b9d9b7a262b91c389f4da53742b21d991bfd0ea4 | |
parent | 7d77d5f6392cf56f0b7b2109e201d6924163bf60 (diff) | |
download | ffmpeg-c436ff41d27cff065c0f52e137f7e128e386ab78.tar.gz |
typo
Originally committed as revision 5553 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index c6b268d209..6d39dc0985 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -2111,7 +2111,7 @@ static int vc1_decode_p_block(VC1Context *v, DCTELEM block[64], int n, int mquan i += skip; if(i > 31) break; - idx = vc1_simple_progressive_8x4_zz[i++]; + idx = vc1_simple_progressive_4x8_zz[i++]; block[idx + off] = value * scale; } if(!(subblkpat & (1 << (1 - j)))) |