summaryrefslogtreecommitdiffstats
path: root/defaultopts.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-01 17:35:10 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:41:05 +0300
commit732ee3474ac23a16f0ed7e791c0a5f8160a11ebd (patch)
tree3063f8ad295c32dc806349252c6e4c3817b757c6 /defaultopts.c
parent9db0c118d3acee07880472e590dc0a25e5b51be6 (diff)
downloadmpv-732ee3474ac23a16f0ed7e791c0a5f8160a11ebd.tar.bz2
mpv-732ee3474ac23a16f0ed7e791c0a5f8160a11ebd.tar.xz
Move options "vo" and "ao" to common struct
Diffstat (limited to 'defaultopts.c')
-rw-r--r--defaultopts.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/defaultopts.c b/defaultopts.c
index 21ee1eaad9..bc8a930e42 100644
--- a/defaultopts.c
+++ b/defaultopts.c
@@ -1,9 +1,12 @@
+#include <stddef.h>
#include "defaultopts.h"
#include "options.h"
void set_default_mplayer_options(struct MPOpts *opts)
{
*opts = (const struct MPOpts){
+ .audio_driver_list = NULL,
+ .video_driver_list = NULL,
.fixed_vo = 0,
};
}