mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Description: remove superfluous parentheses.
Originally committed as revision 25776 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
337a2a4530
commit
b8db4e22de
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user