diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-07-05 03:01:53 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-07-05 03:01:53 +0000 |
commit | 8448946e37983a55db92bdf46614de5f9c5ceab1 (patch) | |
tree | cea597bbecd24e50de37389de40617295d6e93da /libavcodec/roqvideo.c | |
parent | c74a8fe62a004f88864f6d6440721e7a4982fb15 (diff) | |
download | ffmpeg-8448946e37983a55db92bdf46614de5f9c5ceab1.tar.gz |
Remove more useless parentheses.
Originally committed as revision 9471 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/roqvideo.c')
-rw-r--r-- | libavcodec/roqvideo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/roqvideo.c b/libavcodec/roqvideo.c index cc2413363d..53d60a19eb 100644 --- a/libavcodec/roqvideo.c +++ b/libavcodec/roqvideo.c @@ -118,8 +118,8 @@ static inline void apply_motion_generic(RoqContext *ri, int x, int y, int deltax for(cp = 0; cp < 3; cp++) { int outstride = ri->current_frame->linesize[cp]; int instride = ri->last_frame ->linesize[cp]; - block_copy(ri->current_frame->data[cp] + (y*outstride) + x, - ri->last_frame->data[cp] + (my*instride) + mx, + block_copy(ri->current_frame->data[cp] + y*outstride + x, + ri->last_frame->data[cp] + my*instride + mx, outstride, instride, sz); } } |