# HG changeset patch # User stefano # Date 1266527827 0 # Node ID e2935c75f1aace0ac4e22bf1f1a769832bd705ad # Parent 7c1fea45bfc839a2472a021594b24003798e2ed0 Vertically align a list of comparisons in sws_getCachedContext(). diff -r 7c1fea45bfc8 -r e2935c75f1aa libswscale/utils.c --- a/libswscale/utils.c Thu Feb 18 21:12:05 2010 +0000 +++ b/libswscale/utils.c Thu Feb 18 21:17:07 2010 +0000 @@ -1567,11 +1567,15 @@ 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;