diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-03-05 04:02:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-03-05 04:02:04 +0000 |
commit | e60da588e350f886ce1428bf22b67076fa58cdcd (patch) | |
tree | 75c5151b8070fa40b20fa822570984b9039db7ba /ffmpeg.c | |
parent | 378774e9a84e46c0831b0a34b6c2e83dfa8bc479 (diff) | |
download | ffmpeg-e60da588e350f886ce1428bf22b67076fa58cdcd.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |