Commit e48a70e6 authored by Janne Grunau's avatar Janne Grunau

avplay: fix -threads option

The AVOptions based default to threads auto in 2473a45c
works only if avplay does not use custom option handling
for -threads.

CC: <libav-stable@libav.org>
parent 6a4cf065
...@@ -242,7 +242,6 @@ static int64_t duration = AV_NOPTS_VALUE; ...@@ -242,7 +242,6 @@ static int64_t duration = AV_NOPTS_VALUE;
static int debug = 0; static int debug = 0;
static int debug_mv = 0; static int debug_mv = 0;
static int step = 0; static int step = 0;
static int thread_count = 1;
static int workaround_bugs = 1; static int workaround_bugs = 1;
static int fast = 0; static int fast = 0;
static int genpts = 0; static int genpts = 0;
...@@ -2189,7 +2188,6 @@ static int stream_component_open(VideoState *is, int stream_index) ...@@ -2189,7 +2188,6 @@ static int stream_component_open(VideoState *is, int stream_index)
avctx->skip_idct = skip_idct; avctx->skip_idct = skip_idct;
avctx->skip_loop_filter = skip_loop_filter; avctx->skip_loop_filter = skip_loop_filter;
avctx->error_concealment = error_concealment; avctx->error_concealment = error_concealment;
avctx->thread_count = thread_count;
if (lowres) avctx->flags |= CODEC_FLAG_EMU_EDGE; if (lowres) avctx->flags |= CODEC_FLAG_EMU_EDGE;
if (fast) avctx->flags2 |= CODEC_FLAG2_FAST; if (fast) avctx->flags2 |= CODEC_FLAG2_FAST;
...@@ -2954,15 +2952,6 @@ static int opt_vismv(const char *opt, const char *arg) ...@@ -2954,15 +2952,6 @@ static int opt_vismv(const char *opt, const char *arg)
return 0; 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);
#if !HAVE_THREADS
fprintf(stderr, "Warning: not compiled with thread support, using thread emulation\n");
#endif
return 0;
}
static const OptionDef options[] = { static const OptionDef options[] = {
#include "cmdutils_common_opts.h" #include "cmdutils_common_opts.h"
{ "x", HAS_ARG, { (void*)opt_width }, "force displayed width", "width" }, { "x", HAS_ARG, { (void*)opt_width }, "force displayed width", "width" },
...@@ -2994,7 +2983,6 @@ static const OptionDef options[] = { ...@@ -2994,7 +2983,6 @@ static const OptionDef options[] = {
{ "idct", OPT_INT | HAS_ARG | OPT_EXPERT, { (void*)&idct }, "set idct algo", "algo" }, { "idct", OPT_INT | HAS_ARG | OPT_EXPERT, { (void*)&idct }, "set idct algo", "algo" },
{ "ec", OPT_INT | HAS_ARG | OPT_EXPERT, { (void*)&error_concealment }, "set error concealment options", "bit_mask" }, { "ec", OPT_INT | HAS_ARG | OPT_EXPERT, { (void*)&error_concealment }, "set error concealment options", "bit_mask" },
{ "sync", HAS_ARG | OPT_EXPERT, { (void*)opt_sync }, "set audio-video sync. type (type=audio/video/ext)", "type" }, { "sync", HAS_ARG | OPT_EXPERT, { (void*)opt_sync }, "set audio-video sync. type (type=audio/video/ext)", "type" },
{ "threads", HAS_ARG | OPT_EXPERT, { (void*)opt_thread_count }, "thread count", "count" },
{ "autoexit", OPT_BOOL | OPT_EXPERT, { (void*)&autoexit }, "exit at the end", "" }, { "autoexit", OPT_BOOL | OPT_EXPERT, { (void*)&autoexit }, "exit at the end", "" },
{ "exitonkeydown", OPT_BOOL | OPT_EXPERT, { (void*)&exit_on_keydown }, "exit on key down", "" }, { "exitonkeydown", OPT_BOOL | OPT_EXPERT, { (void*)&exit_on_keydown }, "exit on key down", "" },
{ "exitonmousedown", OPT_BOOL | OPT_EXPERT, { (void*)&exit_on_mousedown }, "exit on mouse down", "" }, { "exitonmousedown", OPT_BOOL | OPT_EXPERT, { (void*)&exit_on_mousedown }, "exit on mouse down", "" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment