# HG changeset patch # User vitor # Date 1183431160 0 # Node ID 07005ff96430464388a4da0e2d0d0c655256e681 # Parent fa85149193e2a0fc0432c4972f5d13aded6c8173 Remove useless parentheses. diff -r fa85149193e2 -r 07005ff96430 roqvideo.c --- a/roqvideo.c Tue Jul 03 02:50:36 2007 +0000 +++ b/roqvideo.c Tue Jul 03 02:52:40 2007 +0000 @@ -44,7 +44,7 @@ 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 @@ 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];