diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-03-31 14:44:46 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-03-31 14:44:46 +0000 |
commit | 3f300d7e25e2cd9153995b7b2101bc06abb72152 (patch) | |
tree | 3280264f58fcb00bdcca0a5b782fa28c14720569 /libavcodec | |
parent | 9aaacc246affe5106131aef236d3977cd780ad80 (diff) | |
download | ffmpeg-3f300d7e25e2cd9153995b7b2101bc06abb72152.tar.gz |
100l, fix FATE test broken by r18264
Originally committed as revision 18271 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/interplayvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index ecf6c19fc7..07f73bb4d2 100644 --- a/libavcodec/interplayvideo.c +++ b/libavcodec/interplayvideo.c @@ -307,7 +307,7 @@ static int ipvideo_decode_block_opcode_0x8(IpvideoContext *s) /* need 10 more bytes */ CHECK_STREAM_PTR(10); - if (P[2] <= P[3]) { + if (s->stream_ptr[4] <= s->stream_ptr[5]) { B[0] = *s->stream_ptr++; B[1] = *s->stream_ptr++; B[2] = *s->stream_ptr++; B[3] = *s->stream_ptr++; |