[FFmpeg-cvslog] ffplay: remove -vismv option
Stefano Sabatini
git at videolan.org
Wed Jun 8 01:39:05 CEST 2011
ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Wed Jun 8 01:24:42 2011 +0200| [e77a3095bd7078cca9ee3a868fd0c4ed5bd72578] | committer: Stefano Sabatini
ffplay: remove -vismv option
Use -vismv 1 instead. Simplify.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e77a3095bd7078cca9ee3a868fd0c4ed5bd72578
---
doc/ffplay.texi | 2 --
ffplay.c | 9 ---------
2 files changed, 0 insertions(+), 11 deletions(-)
diff --git a/doc/ffplay.texi b/doc/ffplay.texi
index de942bb..0d12fd8 100644
--- a/doc/ffplay.texi
+++ b/doc/ffplay.texi
@@ -97,8 +97,6 @@ the stream and the audio/video synchronisation drift.
Print specific debug info.
@item -bug
Work around bugs.
- at item -vismv
-Visualize motion vectors.
@item -fast
Non-spec-compliant optimizations.
@item -genpts
diff --git a/ffplay.c b/ffplay.c
index 77b1e4e..cd2255a 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -240,7 +240,6 @@ static int av_sync_type = AV_SYNC_AUDIO_MASTER;
static int64_t start_time = AV_NOPTS_VALUE;
static int64_t duration = AV_NOPTS_VALUE;
static int debug = 0;
-static int debug_mv = 0;
static int step = 0;
static int thread_count = 1;
static int workaround_bugs = 1;
@@ -2134,7 +2133,6 @@ static int stream_component_open(VideoState *is, int stream_index)
if (!codec)
return -1;
- avctx->debug_mv = debug_mv;
avctx->debug = debug;
avctx->workaround_bugs = workaround_bugs;
avctx->lowres = lowres;
@@ -2892,12 +2890,6 @@ static int opt_debug(const char *opt, const char *arg)
return 0;
}
-static int opt_vismv(const char *opt, const char *arg)
-{
- debug_mv = parse_number_or_die(opt, arg, OPT_INT64, INT_MIN, INT_MAX);
- return 0;
-}
-
static int opt_thread_count(const char *opt, const char *arg)
{
thread_count= parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
@@ -2949,7 +2941,6 @@ static const OptionDef options[] = {
{ "stats", OPT_BOOL | OPT_EXPERT, {(void*)&show_status}, "show status", "" },
{ "debug", HAS_ARG | OPT_EXPERT, {(void*)opt_debug}, "print specific debug info", "" },
{ "bug", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&workaround_bugs}, "workaround bugs", "" },
- { "vismv", HAS_ARG | OPT_EXPERT, {(void*)opt_vismv}, "visualize motion vectors", "" },
{ "fast", OPT_BOOL | OPT_EXPERT, {(void*)&fast}, "non spec compliant optimizations", "" },
{ "genpts", OPT_BOOL | OPT_EXPERT, {(void*)&genpts}, "generate pts", "" },
{ "drp", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&decoder_reorder_pts}, "let decoder reorder pts 0=off 1=on -1=auto", ""},
More information about the ffmpeg-cvslog
mailing list