From e60da588e350f886ce1428bf22b67076fa58cdcd Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 5 Mar 2008 04:02:04 +0000 Subject: [PATCH] sws_flags is unsigned. This together with the last commit fixes the strange behavior of -sws_flags. (issue229) Originally committed as revision 12325 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 98f0f82..dc1c66b 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -206,7 +206,7 @@ static uint64_t limit_filesize = 0; // static int pgmyuv_compatibility_hack=0; static float dts_delta_threshold = 10; -static int sws_flags = SWS_BICUBIC; +static unsigned int sws_flags = SWS_BICUBIC; static const char **opt_names; static int opt_name_count; -- 2.7.4