summaryrefslogtreecommitdiff
path: root/libavcodec/interplayvideo.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-12-27 08:56:06 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-12-27 08:56:06 +0000
commite09cdc7206392ae4530382b1a1807669f2d8e22f (patch)
tree1568c5018cd68f16b7b3344a600e8629991ac5d0 /libavcodec/interplayvideo.c
parent5b8ebb3f41a20d33334bc7724483ba746e43e554 (diff)
10l trocadero: forgot one case where picture linesize should be used
Originally committed as revision 20932 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/interplayvideo.c')
-rw-r--r--libavcodec/interplayvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index 99685ff5c3..974aad21c1 100644
--- a/libavcodec/interplayvideo.c
+++ b/libavcodec/interplayvideo.c
@@ -589,7 +589,7 @@ static void ipvideo_decode_opcodes(IpvideoContext *s)
s->stride = s->current_frame.linesize[0] >> 1;
}
s->line_inc = s->stride - 8;
- s->upper_motion_limit_offset = (s->avctx->height - 8) * s->stride
+ s->upper_motion_limit_offset = (s->avctx->height - 8) * s->current_frame.linesize[0]
+ (s->avctx->width - 8) * (1 + s->is_16bpp);
init_get_bits(&gb, s->decoding_map, s->decoding_map_size * 8);