diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:55:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:55:33 +0000 |
commit | d25300b79f09697a92fc47525deaf425f83f7295 (patch) | |
tree | ad0865748ccec7f8fd39a92bbe907a0ef0b209f5 /libavcodec/intrax8.c | |
parent | 732cb5fd5af0643b34ff96023f65c7913090af61 (diff) | |
download | ffmpeg-d25300b79f09697a92fc47525deaf425f83f7295.tar.gz |
remove unneeded {}
Originally committed as revision 10979 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 2d091ceead..413966b98a 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -653,11 +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; - } } /** |