[FFmpeg-cvslog] r30642 - trunk/libswscale/utils.c
stefano
subversion
Thu Feb 18 22:17:07 CET 2010
Author: stefano
Date: Thu Feb 18 22:17:07 2010
New Revision: 30642
Log:
Vertically align a list of comparisons in sws_getCachedContext().
Modified:
trunk/libswscale/utils.c
Modified: trunk/libswscale/utils.c
==============================================================================
--- trunk/libswscale/utils.c Thu Feb 18 22:12:05 2010 (r30641)
+++ trunk/libswscale/utils.c Thu Feb 18 22:17:07 2010 (r30642)
@@ -1567,11 +1567,15 @@ struct SwsContext *sws_getCachedContext(
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;
More information about the ffmpeg-cvslog
mailing list