summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-25 20:44:30 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-25 20:44:30 +0000
commit15f4d9369452533756d011ab3c40aab6f5e44081 (patch)
tree02b1c705e0d7609b21a7117b32d0142d0c393788 /cfg-mplayer.h
parentfc7355bf9d85a3136bf5ddbf4054f776274e7905 (diff)
downloadmpv-15f4d9369452533756d011ab3c40aab6f5e44081.tar.bz2
mpv-15f4d9369452533756d011ab3c40aab6f5e44081.tar.xz
New switches for sdl added.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@637 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index ad40e9b806..842e430c45 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -13,6 +13,12 @@ extern char *monitor_dotclock_str;
#ifdef HAVE_PNG
extern int z_compression;
#endif
+#ifdef HAVE_SDL
+extern char *sdl_driver;
+extern int sdl_noxv;
+extern int sdl_forcexv;
+#endif
+
extern int vo_dbpp;
struct config conf[]={
@@ -85,7 +91,11 @@ struct config conf[]={
#ifdef HAVE_PNG
{"z", &z_compression, CONF_TYPE_INT, CONF_RANGE, 0, 10},
#endif
-
+#ifdef HAVE_SDL
+ {"sdl", &sdl_driver, CONF_TYPE_STRING, 0, 0, 0},
+ {"noxv", &sdl_noxv, CONF_TYPE_FLAG, 0, 0, 1},
+ {"forcexv", &sdl_forcexv, CONF_TYPE_FLAG, 0, 0, 1},
+#endif
{"x", &screen_size_x, CONF_TYPE_INT, CONF_RANGE, 1, 4096},
{"y", &screen_size_y, CONF_TYPE_INT, CONF_RANGE, 1, 4096},
{"xy", &screen_size_xy, CONF_TYPE_INT, CONF_RANGE, 1, 4096},