[FFmpeg-cvslog] r9088 - trunk/ffmpeg.c
lucabe
subversion
Mon May 21 11:50:19 CEST 2007
Author: lucabe
Date: Mon May 21 11:50:17 2007
New Revision: 9088
Log:
Do not try to set a video standard unless "-tvstd" is specified
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c (original)
+++ trunk/ffmpeg.c Mon May 21 11:50:17 2007
@@ -182,7 +182,7 @@ static FILE *fvstats;
static int rate_emu = 0;
static int video_channel = 0;
-static char *video_standard = "ntsc";
+static char *video_standard;
static int audio_volume = 256;
@@ -3834,6 +3834,8 @@ int main(int argc, char **argv)
av_free(opt_names);
+ av_free(video_standard);
+
#ifdef CONFIG_POWERPC_PERF
extern void powerpc_display_perf_report(void);
powerpc_display_perf_report();
More information about the ffmpeg-cvslog
mailing list