[FFmpeg-cvslog] r30643 - trunk/libswscale/utils.c

stefano subversion
Thu Feb 18 22:20:38 CET 2010


Author: stefano
Date: Thu Feb 18 22:20:37 2010
New Revision: 30643

Log:
Reindent and fix brace placement.

Modified:
   trunk/libswscale/utils.c

Modified: trunk/libswscale/utils.c
==============================================================================
--- trunk/libswscale/utils.c	Thu Feb 18 22:17:07 2010	(r30642)
+++ trunk/libswscale/utils.c	Thu Feb 18 22:20:37 2010	(r30643)
@@ -1575,11 +1575,10 @@ struct SwsContext *sws_getCachedContext(
          context->dstFormat != dstFormat ||
          context->flags     != flags     ||
          context->param[0]  != param[0]  ||
-         context->param[1]  != param[1]))
-        {
-            sws_freeContext(context);
-            context = NULL;
-        }
+         context->param[1]  != param[1])) {
+        sws_freeContext(context);
+        context = NULL;
+    }
 
     if (!context) {
         return sws_getContext(srcW, srcH, srcFormat,



More information about the ffmpeg-cvslog mailing list