Commit d168bd4f authored by stefano's avatar stefano

Reindent and fix brace placement.


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@30643 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 6ea4d892
...@@ -1575,11 +1575,10 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context, ...@@ -1575,11 +1575,10 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context,
context->dstFormat != dstFormat || context->dstFormat != dstFormat ||
context->flags != flags || context->flags != flags ||
context->param[0] != param[0] || context->param[0] != param[0] ||
context->param[1] != param[1])) context->param[1] != param[1])) {
{ sws_freeContext(context);
sws_freeContext(context); context = NULL;
context = NULL; }
}
if (!context) { if (!context) {
return sws_getContext(srcW, srcH, srcFormat, return sws_getContext(srcW, srcH, srcFormat,
......
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