summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2007-01-22 22:59:16 +0000
committerphintuka <phintuka>2007-01-22 22:59:16 +0000
commitaa43538df91e3aafc658aa8308a6f0d68d3078a7 (patch)
tree80e02c56c36cd663b3d40d9085108d9f46e71b11
parentd3164ab6a96b990e61f8afd16a15ffc007f3985b (diff)
downloadxineliboutput-aa43538df91e3aafc658aa8308a6f0d68d3078a7.tar.gz
xineliboutput-aa43538df91e3aafc658aa8308a6f0d68d3078a7.tar.bz2
Added DXR3 to list of video drivers (Thanks to Ville Skyttä)
-rw-r--r--README4
-rw-r--r--xine_frontend_main.c10
-rw-r--r--xineliboutput.c5
3 files changed, 11 insertions, 8 deletions
diff --git a/README b/README
index 7b662718..b5d88eb9 100644
--- a/README
+++ b/README
@@ -13,7 +13,7 @@ Description
Simple framebuffer and/or X11 front-end for VDR.
(displays OSD and video in raw X/Xv/XvMC window or
- Linux framebuffer/DirectFB/vidixfb).
+ Linux framebuffer/DirectFB/vidixfb/DXR3).
Support for local and remote frontends.
@@ -188,7 +188,7 @@ Using remote frontends
--video xvmc:127.0.0.1:1.0
With framebuffer frontend (vdr-fbfe):
- --video [fb | DirectFB | vidixfb] [:fb_device]
+ --video [fb | DirectFB | vidixfb | dxr3 | aadxr3 ] [:fb_device]
examples:
--video DirectFB
--video fb:/dev/fb/1
diff --git a/xine_frontend_main.c b/xine_frontend_main.c
index 385f107d..f34a78f8 100644
--- a/xine_frontend_main.c
+++ b/xine_frontend_main.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_frontend_main.c,v 1.22 2007-01-20 17:56:32 phintuka Exp $
+ * $Id: xine_frontend_main.c,v 1.23 2007-01-22 22:59:16 phintuka Exp $
*
*/
@@ -205,9 +205,11 @@ static const char *help_str =
" --help Show (this) help message\n"
" --audio=audiodriver[:device] Select audio driver and optional port\n"
" drivers: auto, alsa, oss, arts, esound, none\n"
- " --video=videodriver Select video driver\n"
- " X11: auto, x11, xshm, xv, xvmc, xxmc, vidix, none\n"
- " framebuffer: auto, fb, DirectFB, vidixfb, none\n"
+ " --video=videodriver[:device] Select video driver and optional port\n"
+ " X11: auto, x11, xshm, xv, xvmc, xxmc, vidix,\n"
+ " none\n"
+ " framebuffer: auto, fb, DirectFB, vidixfb,\n"
+ " dxr3, aadxr3, none\n"
" --display=displayaddress X11 display address\n"
" --aspect=[auto|4:3|16:9|16:10|default] Display aspect ratio\n"
" --fullscreen Fullscreen mode\n"
diff --git a/xineliboutput.c b/xineliboutput.c
index b16362a7..e0ea83f4 100644
--- a/xineliboutput.c
+++ b/xineliboutput.c
@@ -21,7 +21,7 @@
*
* xineliboutput.c: VDR Plugin interface
*
- * $Id: xineliboutput.c,v 1.16 2007-01-03 06:12:40 phintuka Exp $
+ * $Id: xineliboutput.c,v 1.17 2007-01-22 22:59:16 phintuka Exp $
*
*/
@@ -102,7 +102,8 @@ const char cmdLineHelp[] =
" Supported values:\n"
" for sxfe: auto, x11, xshm, xv, xvmc, xxmc,\n"
" vidix, none\n"
-" for fbfe: auto, fb, DirectFB, vidixfb, none\n"
+" for fbfe: auto, fb, DirectFB, vidixfb,\n"
+" dxr3, aadxr3, none\n"
#if 0
" -L --nolocal No local frontend, only remote frontends\n"
" -m M --modeline=M Use modeline M for local frontend\n"