[Toxine-cvs] CVS: toxine/src commands.c,1.10,1.11
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2002-07-03 12:12:25
|
Update of /cvsroot/toxine/toxine/src In directory usw-pr-cvs1:/tmp/cvs-serv22253 Modified Files: commands.c Log Message: typos, update cursor visiblity when fullscreen toggle is activated with vo->fullscreen() call. Index: commands.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/commands.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- commands.c 3 Jul 2002 09:03:16 -0000 1.10 +++ commands.c 3 Jul 2002 12:12:22 -0000 1.11 @@ -160,7 +160,8 @@ "get video capabilities\n" "get video fullscreen\n" "get video property <property> (see xine_get_video_property)\n" - "get video property_min_max <property> (see xine_get_video_property_min_max)\n", + "get video property_min_max <property> (see xine_get_video_property_min_max)\n" + "get video help", }, { "history", NO_ARGS, do_noop, "Display command history.", @@ -841,6 +842,19 @@ else pout("fullscreen isn't supported by video plugin\n"); } + else if(toxine_is_arg_contain(tox, 2, "help")) { + + if(tox->video.cur_plugin && tox->video.cur_plugin->get_help) { + char *help = tox->video.cur_plugin->get_help(); + + if(help) { + pinfo("Video out plugin help:\n"); + pinfo("%s\n", help); + } + } + + } + } else if(nargs >= 3) { |