Update of /cvsroot/freevo/freevo/src/video/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv29706/src/video/plugins

Modified Files:
        mplayer.py xine.py 
Log Message:
added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd

Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/mplayer.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** mplayer.py  6 Aug 2003 19:32:40 -0000       1.9
--- mplayer.py  20 Aug 2003 19:01:16 -0000      1.10
***************
*** 21,24 ****
--- 21,27 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.10  2003/08/20 19:01:16  dischi
+ # added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd
+ #
  # Revision 1.9  2003/08/06 19:32:40  dischi
  # removed freevo_xwin support. Most users have problems with it and it works without 
it
***************
*** 657,666 ****
              elif self.mode == 'play':
  
!                 # The DXR3 device cannot be shared between our SDL session
!                 # and MPlayer.
!                 if (osd.sdl_driver == 'dxr3' or \
!                     config.CONF.display == 'dfbmga'):
!                     if DEBUG: print "Stopping Display for Video Playback"
!                     osd.stopdisplay()
                 
                  if DEBUG:
--- 660,665 ----
              elif self.mode == 'play':
  
!                 if config.STOP_OSD_WHEN_PLAYING:
!                     osd.stopdisplay()                 
                 
                  if DEBUG:
***************
*** 684,691 ****
                          
                  # Ok, we can use the OSD again.
!                 if osd.sdl_driver == 'dxr3' or config.CONF.display == 'dfbmga':
                      osd.restartdisplay()
!                   osd.update()
!                   if DEBUG: print "Display back online"
                  
                  self.mode = 'idle'
--- 683,689 ----
                          
                  # Ok, we can use the OSD again.
!                 if config.STOP_OSD_WHEN_PLAYING:
                      osd.restartdisplay()
!                     osd.update()
                  
                  self.mode = 'idle'

Index: xine.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/xine.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** xine.py     16 Aug 2003 13:10:03 -0000      1.9
--- xine.py     20 Aug 2003 19:01:16 -0000      1.10
***************
*** 29,32 ****
--- 29,35 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.10  2003/08/20 19:01:16  dischi
+ # added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd
+ #
  # Revision 1.9  2003/08/16 13:10:03  dischi
  # bugfix in DEBUG
***************
*** 395,398 ****
--- 398,404 ----
  
              elif self.mode == 'play':
+                 if config.STOP_OSD_WHEN_PLAYING:
+                     osd.stopdisplay()                 
+ 
                  if DEBUG:
                      print 'Xine_Thread.run(): Started, cmd=%s' % self.command
***************
*** 415,418 ****
--- 421,428 ----
                  if DEBUG:
                      print 'Xine_Thread.run(): Stopped'
+ 
+                 if config.STOP_OSD_WHEN_PLAYING:
+                     osd.restartdisplay()
+                     osd.update()
  
                  self.mode = 'idle'




-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to