Mercurial > mplayer.hg
changeset 30600:e2935c75f1aa
Vertically align a list of comparisons in sws_getCachedContext().
author | stefano |
---|---|
date | Thu, 18 Feb 2010 21:17:07 +0000 |
parents | 7c1fea45bfc8 |
children | d568b8b857ca |
files | libswscale/utils.c |
diffstat | 1 files changed, 9 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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;