diff options
author | filon <filon@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-02-07 19:38:39 +0000 |
---|---|---|
committer | filon <filon@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-02-07 19:38:39 +0000 |
commit | a3385947b2140bda6fb85d1db5f3cea11aacb58c (patch) | |
tree | 57261b2b02a7c8507909aa07a95092e8b937ab61 /mplayer.c | |
parent | dd5bfcbc7ef693a260fcfb4e10fc9ddd548a17e2 (diff) | |
download | mpv-a3385947b2140bda6fb85d1db5f3cea11aacb58c.tar.bz2 mpv-a3385947b2140bda6fb85d1db5f3cea11aacb58c.tar.xz |
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
- help (-fstype help) also availabible
- support state BELOW (someone may want to use it...) and by -fstype none forcing of
not changing window layer (user request)
- drop icelayer option, it can be set by -fstype layer=<number>
- simplify vo_x11_fullscreen
- fs change code cleanup
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9318 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r-- | mplayer.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -835,6 +835,11 @@ if(!parse_codec_cfg(get_path("codecs.conf"))){ printf("\n"); exit(0); } + if(vo_fstype_list && strcmp(vo_fstype_list[0],"help")==0){ + fstype_help(); + printf("\n"); + exit(0); + } #ifdef USE_EDL { |