diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:55:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:55:53 +0000 |
commit | 149ad6779211aec42708ee8b69eccf8a2282edc7 (patch) | |
tree | ce3052d8b63e84ab4ab7c2b61c01b385aed91cfc | |
parent | d25300b79f09697a92fc47525deaf425f83f7295 (diff) | |
download | ffmpeg-streaming-149ad6779211aec42708ee8b69eccf8a2282edc7.zip ffmpeg-streaming-149ad6779211aec42708ee8b69eccf8a2282edc7.tar.gz |
indention
Originally committed as revision 10980 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/intrax8.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 413966b..3ab2b6d 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -653,9 +653,9 @@ 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[1] += ( s->mb_y&(~1) ) * uvlinesize << 2;//chroma blocks are on add rows - s->dest[2] += ( s->mb_y&(~1) ) * uvlinesize << 2; + 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; } /** |