From 9db0c118d3acee07880472e590dc0a25e5b51be6 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Mon, 31 Mar 2008 06:19:29 +0300 Subject: Start of new option system First part of option restructuring. The aim is to move option values from a huge number of separate globals to a single non-global struct. This part adds some support for parsing option values into such struct instances, and moves one example option (fixed-vo) to the struct. --- mp_core.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mp_core.h') diff --git a/mp_core.h b/mp_core.h index e6149266c2..c40c948114 100644 --- a/mp_core.h +++ b/mp_core.h @@ -1,6 +1,7 @@ #ifndef MPLAYER_MP_CORE_H #define MPLAYER_MP_CORE_H +#include "options.h" #include "mp_osd.h" #include "libao2/audio_out.h" #include "playtree.h" @@ -42,6 +43,7 @@ typedef struct MPContext { + struct MPOpts opts; int osd_show_percentage; int osd_function; const ao_functions_t *audio_out; @@ -114,7 +116,6 @@ extern FILE *edl_fd; extern int file_filter; // These appear in options list extern float playback_speed; -extern int fixed_vo; extern int forced_subs_only; -- cgit v1.2.3