Commit dd71d27b authored by benoit's avatar benoit

Description: remove superfluous parentheses.


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@25776 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 1bd11085
......@@ -2965,11 +2965,11 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context,
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;
......
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