From a06a18c55dfade76ba5f560d9d8be71951638792 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 21 Dec 2007 10:08:43 +0000 Subject: reset manually selected codecs at the end of opt_input_file, to avoid propagating selection to output file Originally committed as revision 11289 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index 1fbae5e515..9ffa2fb9a3 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2790,6 +2790,9 @@ static void opt_input_file(const char *filename) video_channel = 0; rate_emu = 0; + av_freep(&video_codec_name); + av_freep(&audio_codec_name); + av_freep(&subtitle_codec_name); } static void check_audio_video_sub_inputs(int *has_video_ptr, int *has_audio_ptr, -- cgit v1.2.3