summaryrefslogtreecommitdiffstats
path: root/core/cfg-mplayer.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-03-01 11:27:59 +0100
committerwm4 <wm4@nowhere>2013-03-01 11:27:59 +0100
commitc9088fff86068f3fc983ec6944e648cdc3ebe0a3 (patch)
tree7612c7b65517359e1e64c37dd4e7e429ecfa054c /core/cfg-mplayer.h
parent95b8585d76bf8b719dd9b82d305e169971f73570 (diff)
downloadmpv-c9088fff86068f3fc983ec6944e648cdc3ebe0a3.tar.bz2
mpv-c9088fff86068f3fc983ec6944e648cdc3ebe0a3.tar.xz
m_option: don't define OPT_BASE_STRUCT by default
OPT_BASE_STRUCT defines which struct the OPT_ macros (like OPT_INT etc.) reference implicitly, since these macros take struct member names but no struct type. Normally, only cfg-mplayer.h should need this, and other places shouldn't be bothered with having to #undef it. (Some files, like demux_lavf.c, still store their options in MPOpts. In the long term, this should be removed, and handled like e.g. with VO suboptions instead.)
Diffstat (limited to 'core/cfg-mplayer.h')
-rw-r--r--core/cfg-mplayer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h
index 22017f930b..651ec61a77 100644
--- a/core/cfg-mplayer.h
+++ b/core/cfg-mplayer.h
@@ -282,6 +282,8 @@ const m_option_t msgl_config[]={
extern const m_option_t lavc_decode_opts_conf[];
+#define OPT_BASE_STRUCT struct MPOpts
+
const m_option_t common_opts[] = {
// ------------------------- common options --------------------
OPT_FLAG("quiet", quiet, CONF_GLOBAL),