summaryrefslogtreecommitdiffstats
path: root/options.h
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2010-11-12 21:04:16 +0100
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-13 23:06:33 +0200
commit9a9a7feafe213147de93bb34d1e4f70a99777b15 (patch)
treeae43d3fbb792f8c049dcb393576aa9711541e605 /options.h
parent91ea30c58587af0929b7dea42ff238d70e78a9bc (diff)
downloadmpv-9a9a7feafe213147de93bb34d1e4f70a99777b15.tar.bz2
mpv-9a9a7feafe213147de93bb34d1e4f70a99777b15.tar.xz
options: move various mplayer.c options to option struct
Following options were moved: [no]quiet, [no]autosync, softsleep, [no]rtc, rtc-device.
Diffstat (limited to 'options.h')
-rw-r--r--options.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/options.h b/options.h
index 86d524f57f..7517f3a172 100644
--- a/options.h
+++ b/options.h
@@ -35,6 +35,7 @@ typedef struct MPOpts {
int capture_dump;
int loop_times;
int ordered_chapters;
+ int quiet;
float stream_cache_min_percent;
float stream_cache_seek_min_percent;
int chapterrange[2];
@@ -43,6 +44,10 @@ typedef struct MPOpts {
int user_correct_pts;
int user_pts_assoc_mode;
int initial_audio_sync;
+ int autosync;
+ int softsleep;
+ int rtc;
+ char *rtc_device;
int key_fifo_size;
int doubleclick_time;
int audio_id;