From 22b6a24c34e967d7f34fff082b5f5138c11ee804 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 18 Feb 2010 21:17:07 +0000 Subject: [PATCH] Vertically align a list of comparisons in sws_getCachedContext(). Originally committed as revision 30642 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/utils.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/libswscale/utils.c b/libswscale/utils.c index eb690740fdb..66d22811f86 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -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; -- 2.39.2