summaryrefslogtreecommitdiffstats
path: root/options/options.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-11-25 21:00:39 +0100
committerwm4 <wm4@nowhere>2016-11-25 21:17:25 +0100
commit1a2319f3e4cc42c680e2fd3ba30022c7a9adf3fe (patch)
tree37261ccac2acc614777ba4c790cfed78b96fb58f /options/options.h
parent98a257b3a871587a97f51ef1b09800959a94ed1e (diff)
downloadmpv-1a2319f3e4cc42c680e2fd3ba30022c7a9adf3fe.tar.bz2
mpv-1a2319f3e4cc42c680e2fd3ba30022c7a9adf3fe.tar.xz
options: remove deprecated sub-option handling for --vo and --ao
Long planned. Leads to some sanity. There still are some rather gross things. Especially g_groups is ugly, and a hack that can hopefully be removed. (There is a plan for it, but whether it's implemented depends on how much energy is left.)
Diffstat (limited to 'options/options.h')
-rw-r--r--options/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/options.h b/options/options.h
index 4ddf9d1490..fa2a96c3b2 100644
--- a/options/options.h
+++ b/options/options.h
@@ -7,7 +7,7 @@
#include "common/common.h"
typedef struct mp_vo_opts {
- struct m_obj_settings *video_driver_list, *vo_defs;
+ struct m_obj_settings *video_driver_list;
int taskbar_progress;
int ontop;
@@ -90,7 +90,7 @@ typedef struct MPOpts {
int auto_load_scripts;
- struct m_obj_settings *audio_driver_list, *ao_defs;
+ struct m_obj_settings *audio_driver_list;
char *audio_device;
int audio_exclusive;
char *audio_client_name;