diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:56:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:56:18 +0000 |
commit | b7f435b058d60771c6db4db1246526c095b54d26 (patch) | |
tree | 19e8d042956f0d076954bea413b543c82488a3e0 /libavcodec | |
parent | 149ad6779211aec42708ee8b69eccf8a2282edc7 (diff) | |
download | ffmpeg-b7f435b058d60771c6db4db1246526c095b54d26.tar.gz |
vertical align
Originally committed as revision 10981 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/intrax8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 3ab2b6d029..1f006f9ce9 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -653,7 +653,7 @@ static inline void x8_init_block_index(MpegEncContext *s){ //FIXME maybe merge w s->dest[1] = s->current_picture.data[1]; s->dest[2] = s->current_picture.data[2]; - s->dest[0] += s->mb_y * linesize << 3; + s->dest[0] += s->mb_y * linesize << 3; s->dest[1] += ( s->mb_y&(~1) ) * uvlinesize << 2;//chroma blocks are on add rows s->dest[2] += ( s->mb_y&(~1) ) * uvlinesize << 2; } |