summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-03-05 04:02:04 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-03-05 04:02:04 +0000
commite60da588e350f886ce1428bf22b67076fa58cdcd (patch)
tree75c5151b8070fa40b20fa822570984b9039db7ba /ffmpeg.c
parent378774e9a84e46c0831b0a34b6c2e83dfa8bc479 (diff)
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
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 98f0f82e0c..dc1c66b45d 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;