[MPlayer-cvslog] r25776 - trunk/libswscale/swscale.c

benoit subversion at mplayerhq.hu
Thu Jan 17 09:12:23 CET 2008


Author: benoit
Date: Thu Jan 17 09:12:23 2008
New Revision: 25776

Log:
Description: remove superfluous parentheses.


Modified:
   trunk/libswscale/swscale.c

Modified: trunk/libswscale/swscale.c
==============================================================================
--- trunk/libswscale/swscale.c	(original)
+++ trunk/libswscale/swscale.c	Thu Jan 17 09:12:23 2008
@@ -2965,11 +2965,11 @@ struct SwsContext *sws_getCachedContext(
         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;



More information about the MPlayer-cvslog mailing list