summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 18:57:02 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 19:34:48 +0300
commit8de8be15366b235fb252d5f83509b0ce1ea825c5 (patch)
treee41c6a81a81e2d46d9da9bb6a39968f33a645cec /mplayer.c
parentbb12a33f9ae0b5cbf628e6f4e0218736a89e481f (diff)
downloadmpv-8de8be15366b235fb252d5f83509b0ce1ea825c5.tar.bz2
mpv-8de8be15366b235fb252d5f83509b0ce1ea825c5.tar.xz
Move input options to option struct
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index 34bbaad7c8..866e6bd203 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2872,7 +2872,7 @@ if(!codecs_file || !parse_codec_cfg(codecs_file)){
// Init input system
current_module = "init_input";
-mpctx->input = mp_input_init(use_gui);
+ mpctx->input = mp_input_init(&opts->input, use_gui);
mp_input_add_key_fd(mpctx->input, -1,0,mplayer_get_key,NULL, mpctx->key_fifo);
if(slave_mode)
mp_input_add_cmd_fd(mpctx->input, 0,USE_SELECT,MP_INPUT_SLAVE_CMD_FUNC,NULL);