]> git.sesse.net Git - ffmpeg/commitdiff
Vertically align a list of comparisons in sws_getCachedContext().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Thu, 18 Feb 2010 21:17:07 +0000 (21:17 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Thu, 18 Feb 2010 21:17:07 +0000 (21:17 +0000)
Originally committed as revision 30642 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/utils.c

index eb690740fdb4e3f79bf011c6c6ad0d04d59919d8..66d22811f8615f6678f751d504ab47aa47e4cc30 100644 (file)
@@ -1567,11 +1567,15 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context,
         param = default_param;
 
     if (context &&
-        (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]))
+        (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;