diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-13 05:02:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-13 15:01:05 +0200 |
commit | 786b0968dd2969bc6319ead96ed44e856198c704 (patch) | |
tree | 3026d85ed2310a3ab27fc422617b02e0212f84a3 /ffplay.c | |
parent | f57119b8e58cb5437c3ab40d797293ecb9b4a894 (diff) | |
download | ffmpeg-786b0968dd2969bc6319ead96ed44e856198c704.tar.gz |
ffplay: remove explicit idct option
this allows named idct options to be used
Reviewed-by: Marton Balint <cus@passwd.hu>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -305,7 +305,6 @@ static int workaround_bugs = 1; static int fast = 0; static int genpts = 0; static int lowres = 0; -static int idct = FF_IDCT_AUTO; static int error_concealment = 3; static int decoder_reorder_pts = -1; static int autoexit; @@ -2480,7 +2479,6 @@ static int stream_component_open(VideoState *is, int stream_index) codec->max_lowres); avctx->lowres= codec->max_lowres; } - avctx->idct_algo = idct; avctx->error_concealment = error_concealment; if(avctx->lowres) avctx->flags |= CODEC_FLAG_EMU_EDGE; @@ -3402,7 +3400,6 @@ static const OptionDef options[] = { { "genpts", OPT_BOOL | OPT_EXPERT, { &genpts }, "generate pts", "" }, { "drp", OPT_INT | HAS_ARG | OPT_EXPERT, { &decoder_reorder_pts }, "let decoder reorder pts 0=off 1=on -1=auto", ""}, { "lowres", OPT_INT | HAS_ARG | OPT_EXPERT, { &lowres }, "", "" }, - { "idct", OPT_INT | HAS_ARG | OPT_EXPERT, { &idct }, "set idct algo", "algo" }, { "ec", OPT_INT | HAS_ARG | OPT_EXPERT, { &error_concealment }, "set error concealment options", "bit_mask" }, { "sync", HAS_ARG | OPT_EXPERT, { .func_arg = opt_sync }, "set audio-video sync. type (type=audio/video/ext)", "type" }, { "autoexit", OPT_BOOL | OPT_EXPERT, { &autoexit }, "exit at the end", "" }, |