diff options
author | Arpi <arpi@thot.banki.hu> | 2002-11-01 17:46:45 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2002-11-01 17:46:45 +0000 |
commit | a749913f4caf02a16779b41714bb2eca629ae7a2 (patch) | |
tree | ecd4fcd620f3335a9b873ba3a2a230377c84ba68 /postproc/swscale.c | |
parent | f56dd362bdb24008ec13406e8baffe62cbe4abd8 (diff) | |
download | ffmpeg-a749913f4caf02a16779b41714bb2eca629ae7a2.tar.gz |
verbose can be negative
Originally committed as revision 8028 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.c')
-rw-r--r-- | postproc/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c index 6962443dac..efd5d9a68f 100644 --- a/postproc/swscale.c +++ b/postproc/swscale.c @@ -2300,7 +2300,7 @@ SwsContext *getSwsContext(int srcW, int srcH, int srcFormat, int dstW, int dstH, MSG_INFO("using C\n"); } - if((flags & SWS_PRINT_INFO) && verbose) + if((flags & SWS_PRINT_INFO) && verbose>0) { if(cpuCaps.hasMMX) { |