Mercurial > mplayer.hg
changeset 25748:28a006b3d912
Description: remove superfluous parentheses.
author | benoit |
---|---|
date | Thu, 17 Jan 2008 08:12:23 +0000 |
parents | 12970064a271 |
children | 8d082a234a6d |
files | libswscale/swscale.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale.c Thu Jan 17 08:06:09 2008 +0000 +++ b/libswscale/swscale.c Thu Jan 17 08:12:23 2008 +0000 @@ -2965,11 +2965,11 @@ param = default_param; if (context != NULL) { - if ((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])) + if (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;