summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authoracki2 <acki2@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-13 11:15:25 +0000
committeracki2 <acki2@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-13 11:15:25 +0000
commit39765b05ea89fc8153a4a659348d1ef3725cf652 (patch)
tree57d2bc1778503845a06ff45f2662f7142eade96f /cfg-mplayer.h
parent8b84635c64500dc48ba1785710e0168bd4a1d51f (diff)
downloadmpv-39765b05ea89fc8153a4a659348d1ef3725cf652.tar.bz2
mpv-39765b05ea89fc8153a4a659348d1ef3725cf652.tar.xz
- added -bpp switch (only takes effect if IMGFMT_BGR) to select the desired depth
(15,16,24,32) by querying libvo for just this depth (if supported by codec) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@386 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 78651adf6a..f1e5501d5f 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -64,7 +64,9 @@ struct config conf[]={
{"nofs", &fullscreen, CONF_TYPE_FLAG, 0, 1, 0},
{"zoom", &softzoom, CONF_TYPE_FLAG, 0, 0, 1},
{"nozoom", &softzoom, CONF_TYPE_FLAG, 0, 1, 0},
-
+
+ {"bpp", &user_bpp, CONF_TYPE_INT, CONF_RANGE, 0, 32},
+
{"idx", &no_index, CONF_TYPE_FLAG, 0, 1, 0},
{"noidx", &no_index, CONF_TYPE_FLAG, 0, 0, 1},
{"verbose", &verbose, CONF_TYPE_INT, CONF_RANGE, 0, 100},