diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-18 21:17:07 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-18 21:17:07 +0000 |
commit | 22b6a24c34e967d7f34fff082b5f5138c11ee804 (patch) | |
tree | b6b637e56c0496902f7dcde280de5f3e7218568d /libswscale | |
parent | 5a011d8b0826408b9d5e839722efff83e3de57d0 (diff) | |
download | ffmpeg-22b6a24c34e967d7f34fff082b5f5138c11ee804.tar.gz |
Vertically align a list of comparisons in sws_getCachedContext().
Originally committed as revision 30642 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 14 |
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; |