summaryrefslogtreecommitdiffstats
path: root/libswscale
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-18 21:17:07 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-18 21:17:07 +0000
commit8090adeed3e04f019f79fcb50605294e442ae1ed (patch)
tree36f180e3d2308059c6e7d1e4cd9dcf65ab278947 /libswscale
parentb07bf5bddc48ec4b79b6d10dadb1ec2f6ea848b7 (diff)
downloadmpv-8090adeed3e04f019f79fcb50605294e442ae1ed.tar.bz2
mpv-8090adeed3e04f019f79fcb50605294e442ae1ed.tar.xz
Vertically align a list of comparisons in sws_getCachedContext().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30642 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/utils.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index eb690740fd..66d22811f8 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;