Bug #14303, was updated on 2008-Aug-03 01:47
Here is a current snapshot of the bug.

Project: Vdr Softdevice
Category: None
Status: Closed
Resolution: Wont Fix
Bug Group: None
Priority: 5
Submitted by: bugmenot
Assigned to : none
Summary: ShmClient: Fullscreen commandline parameter

Details: Please apply the following patch to provide a commandline parameter 
for fullscreen. thanks in advance.

Index: softdevice-cvs/ShmClient.c
===================================================================
--- softdevice-cvs.orig/ShmClient.c
+++ softdevice-cvs/ShmClient.c
@@ -119,6 +119,16 @@ int main(int argc, char **argv) {
         xvRemote= new cShmRemote("softdevice-xv");
         //SetupStore.InitSetupStore();
         SetupStore->xvFullscreen=0;
+       if (argc>1) {
+               if (strcmp(argv[1], "-f") == 0) {
+                       SetupStore->xvFullscreen=1;
+               } else if (strcmp(argv[1], "-h") == 0) {
+                       printf ("Shared-Memory-Client for vdr-softdevice\n");
+                       printf ("Options:\n");
+                       printf ("  -f   Start fullscreen\n");
+                       return 0;
+               }
+       }
 
         if ( !vout->Initialize()  ) {
                 fprintf(stderr,"Could not init video out!\n");


Follow-Ups:

Date: 2008-Sep-10 19:18
By: lucke

Comment:
Patch rejected.
Parameters for starting in full screen mode should be specified like those for 
softdevice: -vo xv:full .
-------------------------------------------------------

For detailed info, follow this link:
http://developer.berlios.de/bugs/?func=detailbug&bug_id=14303&group_id=2051
_______________________________________________
Softdevice-devel mailing list
Softdevice-devel@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/softdevice-devel

Reply via email to