# HG changeset patch # User benoit # Date 1200557543 0 # Node ID 28a006b3d9128958fb0b8b45d6a0a2a1faa27328 # Parent 12970064a2716574b48201e47073bc412d5b80bb Description: remove superfluous parentheses. diff -r 12970064a271 -r 28a006b3d912 libswscale/swscale.c --- a/libswscale/swscale.c Thu Jan 17 08:06:09 2008 +0000 +++ b/libswscale/swscale.c Thu Jan 17 08:12:23 2008 +0000 @@ -2965,11 +2965,11 @@ param = default_param; if (context != NULL) { - if ((context->srcW != srcW) || (context->srcH != srcH) || - (context->srcFormat != srcFormat) || - (context->dstW != dstW) || (context->dstH != dstH) || - (context->dstFormat != dstFormat) || (context->flags != flags) || - (context->param[0] != param[0]) || (context->param[1] != param[1])) + if (context->srcW != srcW || context->srcH != srcH || + context->srcFormat != srcFormat || + context->dstW != dstW || context->dstH != dstH || + context->dstFormat != dstFormat || context->flags != flags || + context->param[0] != param[0] || context->param[1] != param[1]) { sws_freeContext(context); context = NULL;