summaryrefslogtreecommitdiffstats
path: root/options.h
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 /options.h
parentbb12a33f9ae0b5cbf628e6f4e0218736a89e481f (diff)
downloadmpv-8de8be15366b235fb252d5f83509b0ce1ea825c5.tar.bz2
mpv-8de8be15366b235fb252d5f83509b0ce1ea825c5.tar.xz
Move input options to option struct
Diffstat (limited to 'options.h')
-rw-r--r--options.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/options.h b/options.h
index 3105a24252..cfb6473f3e 100644
--- a/options.h
+++ b/options.h
@@ -55,6 +55,17 @@ typedef struct MPOpts {
int threads;
int bitexact;
} lavc_param;
+ struct input_conf {
+ char *config_file;
+ unsigned int ar_delay;
+ unsigned int ar_rate;
+ char *js_dev;
+ char *in_file;
+ int use_joystick;
+ int use_lirc;
+ int use_lircc;
+ int use_ar; // apple remote
+ } input;
} MPOpts;
#endif