[FFmpeg-cvslog] ffmpeg: remove now unneeded old *_codec_name code
Michael Niedermayer
git at videolan.org
Sat Sep 22 19:11:56 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Sep 22 18:20:59 2012 +0200| [374033ee93b5ff2577a63e07e10307d435e80885] | committer: Michael Niedermayer
ffmpeg: remove now unneeded old *_codec_name code
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=374033ee93b5ff2577a63e07e10307d435e80885
---
ffmpeg_opt.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c
index e759125..0bdbd67 100644
--- a/ffmpeg_opt.c
+++ b/ffmpeg_opt.c
@@ -91,9 +91,6 @@ int frame_bits_per_raw_sample = 0;
static int intra_only = 0;
-static const char *video_codec_name = NULL;
-static const char *audio_codec_name = NULL;
-static const char *subtitle_codec_name = NULL;
static int file_overwrite = 0;
static int no_file_overwrite = 0;
static int video_discard = 0;
@@ -178,21 +175,18 @@ static int opt_video_standard(void *optctx, const char *opt, const char *arg)
static int opt_audio_codec(void *optctx, const char *opt, const char *arg)
{
OptionsContext *o = optctx;
- audio_codec_name = arg;
return parse_option(o, "codec:a", arg, options);
}
static int opt_video_codec(void *optctx, const char *opt, const char *arg)
{
OptionsContext *o = optctx;
- video_codec_name = arg;
return parse_option(o, "codec:v", arg, options);
}
static int opt_subtitle_codec(void *optctx, const char *opt, const char *arg)
{
OptionsContext *o = optctx;
- subtitle_codec_name = arg;
return parse_option(o, "codec:s", arg, options);
}
More information about the ffmpeg-cvslog
mailing list