Reindent and fix brace placement.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30643 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
stefano 2010-02-18 21:20:37 +00:00
parent 8090adeed3
commit 2aafb80828
1 changed files with 4 additions and 5 deletions

View File

@ -1575,11 +1575,10 @@ struct SwsContext *sws_getCachedContext(struct SwsContext *context,
context->dstFormat != dstFormat ||
context->flags != flags ||
context->param[0] != param[0] ||
context->param[1] != param[1]))
{
sws_freeContext(context);
context = NULL;
}
context->param[1] != param[1])) {
sws_freeContext(context);
context = NULL;
}
if (!context) {
return sws_getContext(srcW, srcH, srcFormat,