Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-11-10 00:55:33 +0300
committerMichael Niedermayer <michaelni@gmx.at>2007-11-10 00:55:33 +0300
commitd25300b79f09697a92fc47525deaf425f83f7295 (patch)
treead0865748ccec7f8fd39a92bbe907a0ef0b209f5 /libavcodec/intrax8.c
parent732cb5fd5af0643b34ff96023f65c7913090af61 (diff)
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.c2
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;
- }
}
/**