Commit 22b6a24c authored by Stefano Sabatini's avatar Stefano Sabatini

Vertically align a list of comparisons in sws_getCachedContext().

Originally committed as revision 30642 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent 5a011d8b
...@@ -1567,11 +1567,15 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context, ...@@ -1567,11 +1567,15 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context,
param = default_param; param = default_param;
if (context && if (context &&
(context->srcW != srcW || context->srcH != srcH || (context->srcW != srcW ||
context->srcFormat != srcFormat || context->srcH != srcH ||
context->dstW != dstW || context->dstH != dstH || context->srcFormat != srcFormat ||
context->dstFormat != dstFormat || context->flags != flags || context->dstW != dstW ||
context->param[0] != param[0] || context->param[1] != param[1])) context->dstH != dstH ||
context->dstFormat != dstFormat ||
context->flags != flags ||
context->param[0] != param[0] ||
context->param[1] != param[1]))
{ {
sws_freeContext(context); sws_freeContext(context);
context = NULL; context = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment