summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-03-31 06:19:29 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:41:05 +0300
commit9db0c118d3acee07880472e590dc0a25e5b51be6 (patch)
treef7b1664d28d5300bde7f863c8d32324a427112d2 /mencoder.c
parentf894294bae1ff9b2c1802a5ae7e73cfdbc26e645 (diff)
downloadmpv-9db0c118d3acee07880472e590dc0a25e5b51be6.tar.bz2
mpv-9db0c118d3acee07880472e590dc0a25e5b51be6.tar.xz
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.
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mencoder.c b/mencoder.c
index c5e0d682fa..3e86b9e1cc 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -90,6 +90,10 @@
#endif
#include "libmpcodecs/ae.h"
+#include "options.h"
+
+MPOpts opts;
+
int vo_doublebuffering=0;
int vo_directrendering=0;
int vo_config_count=1;
@@ -420,7 +424,7 @@ user_correct_pts = 0;
mp_msg_init();
// Create the config context and register the options
- mconfig = m_config_new();
+ mconfig = m_config_new(&opts);
m_config_register_options(mconfig,mencoder_opts);
// Preparse the command line