diff options
author | phintuka <phintuka> | 2013-08-20 09:05:38 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2013-08-20 09:05:38 +0000 |
commit | 26a5b1aaa80039efdb2675810e3f352a651e2c48 (patch) | |
tree | 6f2d37e602f40ea0b97a15622464fda69442a3b8 | |
parent | 1b40c7445da00edd296512e951b84d62df8e126e (diff) | |
download | xineliboutput-26a5b1aaa80039efdb2675810e3f352a651e2c48.tar.gz xineliboutput-26a5b1aaa80039efdb2675810e3f352a651e2c48.tar.bz2 |
Updated help txt
-rw-r--r-- | xineliboutput.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/xineliboutput.c b/xineliboutput.c index ba663aa5..fc93b90a 100644 --- a/xineliboutput.c +++ b/xineliboutput.c @@ -21,7 +21,7 @@ * * xineliboutput.c: VDR Plugin interface * - * $Id: xineliboutput.c,v 1.56 2012-06-13 07:32:24 phintuka Exp $ + * $Id: xineliboutput.c,v 1.57 2013-08-20 09:05:38 phintuka Exp $ * */ @@ -93,7 +93,10 @@ cPluginXinelibOutput::cPluginXinelibOutput(void) cPluginXinelibOutput::~cPluginXinelibOutput() { // Clean up after yourself! - cXinelibDevice::Dispose(); + + if (m_Dev) { + cXinelibDevice::Dispose(); + } } @@ -115,9 +118,9 @@ const char cmdLineHelp[] = " Supported values:\n" " for sxfe: auto, x11, xshm, xv, xvmc, xxmc,\n" #ifdef HAVE_VDPAU - "vdpau, " +" vdpau, " #endif -" vidix, sdl, opengl, none\n" +" vaapi, vidix, sdl, opengl, none\n" " for fbfe: auto, fb, DirectFB, vidixfb,\n" " sdl, dxr3, aadxr3, none\n" #if 0 @@ -144,6 +147,9 @@ const char cmdLineHelp[] = " (or framebuffer device name)\n" " -W ID --wid=ID Use existing X11 window\n" " Special ID for root window: --wid=root\n" +#ifdef HAVE_XRANDR +" -m --modeswitch Enable video mode switching\n" +#endif " -P NAME --post=NAME Use xine post plugin NAME\n" " format: pluginname[:arg=val[,arg=val]][,...]\n" " example: \n" |