[FFmpeg-cvslog] r12325 - trunk/ffmpeg.c
michael
subversion
Wed Mar 5 05:02:04 CET 2008
Author: michael
Date: Wed Mar 5 05:02:04 2008
New Revision: 12325
Log:
sws_flags is unsigned.
This together with the last commit fixes the strange behavior of -sws_flags.
(issue229)
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Wed Mar 5 05:02:04 2008
@@ -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;
More information about the ffmpeg-cvslog
mailing list