Commit d674d734 authored by vitor's avatar vitor

Remove useless parentheses.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9465 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e5648685
......@@ -44,7 +44,7 @@ void ff_apply_vector_2x2(RoqContext *ri, int x, int y, roq_cell *cell)
int boffs,stride;
stride = ri->current_frame->linesize[0];
boffs = (y * stride) + x;
boffs = y*stride + x;
bptr = ri->current_frame->data[0] + boffs;
bptr[0 ] = cell->y[0];
......@@ -74,7 +74,7 @@ void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell)
int boffs,stride;
stride = ri->current_frame->linesize[0];
boffs = (y * stride) + x;
boffs = y*stride + x;
bptr = ri->current_frame->data[0] + boffs;
bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = cell->y[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment