Update of /cvsroot/freevo/freevo/src/tv/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv29706/src/tv/plugins
Modified Files:
ivtv_basic_tv.py mplayer.py timeshift.py
Log Message:
added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd
Index: ivtv_basic_tv.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/ivtv_basic_tv.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ivtv_basic_tv.py 6 Aug 2003 19:32:39 -0000 1.6
--- ivtv_basic_tv.py 20 Aug 2003 19:01:15 -0000 1.7
***************
*** 13,16 ****
--- 13,19 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.7 2003/08/20 19:01:15 dischi
+ # added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd
+ #
# Revision 1.6 2003/08/06 19:32:39 dischi
# removed freevo_xwin support. Most users have problems with it and it works without
it
***************
*** 361,369 ****
elif self.mode == 'play':
! # The DXR3 device cannot be shared between our SDL session
! # and MPlayer.
! if (osd.sdl_driver == 'dxr3'):
! if DEBUG:
! print "Stopping Display for Video Playback on DXR3"
osd.stopdisplay()
--- 364,368 ----
elif self.mode == 'play':
! if config.STOP_OSD_WHEN_PLAYING:
osd.stopdisplay()
***************
*** 382,389 ****
# Ok, we can use the OSD again.
! if osd.sdl_driver == 'dxr3':
osd.restartdisplay()
osd.update()
- print "Display back online"
if self.mode == 'play':
--- 381,387 ----
# Ok, we can use the OSD again.
! if config.STOP_OSD_WHEN_PLAYING:
osd.restartdisplay()
osd.update()
if self.mode == 'play':
Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/mplayer.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** mplayer.py 6 Aug 2003 19:32:40 -0000 1.14
--- mplayer.py 20 Aug 2003 19:01:16 -0000 1.15
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.15 2003/08/20 19:01:16 dischi
+ # added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd
+ #
# Revision 1.14 2003/08/06 19:32:40 dischi
# removed freevo_xwin support. Most users have problems with it and it works without
it
***************
*** 431,441 ****
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 on DXR3"
osd.stopdisplay()
if DEBUG:
print 'MPlayer_Thread.run(): Started, cmd=%s' % self.command
--- 434,440 ----
elif self.mode == 'play':
! if config.STOP_OSD_WHEN_PLAYING:
osd.stopdisplay()
+
if DEBUG:
print 'MPlayer_Thread.run(): Started, cmd=%s' % self.command
***************
*** 452,459 ****
# Ok, we can use the OSD again.
! if osd.sdl_driver == 'dxr3' or config.CONF.display == 'dfbmga':
osd.restartdisplay()
osd.update()
- print "Display back online"
if self.mode == 'play':
--- 451,457 ----
# Ok, we can use the OSD again.
! if config.STOP_OSD_WHEN_PLAYING:
osd.restartdisplay()
osd.update()
if self.mode == 'play':
Index: timeshift.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/timeshift.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** timeshift.py 6 Aug 2003 19:32:40 -0000 1.8
--- timeshift.py 20 Aug 2003 19:01:16 -0000 1.9
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.9 2003/08/20 19:01:16 dischi
+ # added dga support and STOP_OSD_WHEN_PLAYING to shutdown down osd
+ #
# Revision 1.8 2003/08/06 19:32:40 dischi
# removed freevo_xwin support. Most users have problems with it and it works without
it
***************
*** 400,408 ****
elif self.mode == 'play':
! # The DXR3 device cannot be shared between our SDL session
! # and MPlayer.
! if (osd.sdl_driver == 'dxr3'):
! if DEBUG:
! print "Stopping Display for Video Playback on DXR3"
osd.stopdisplay()
if DEBUG:
--- 403,407 ----
elif self.mode == 'play':
! if config.STOP_OSD_WHEN_PLAYING:
osd.stopdisplay()
if DEBUG:
***************
*** 426,436 ****
self.tsinput.close()
# Remove the buffer file
! if os.path.exists('%s' % config.TIMESHIFT_BUFFER): os.unlink('%s' %
config.TIMESHIFT_BUFFER)
# Ok, we can use the OSD again.
! if osd.sdl_driver == 'dxr3':
osd.restartdisplay()
osd.update()
- print "Display back online"
if self.mode == 'play':
--- 425,435 ----
self.tsinput.close()
# Remove the buffer file
! if os.path.exists('%s' % config.TIMESHIFT_BUFFER):
! os.unlink('%s' % config.TIMESHIFT_BUFFER)
# Ok, we can use the OSD again.
! if config.STOP_OSD_WHEN_PLAYING:
osd.restartdisplay()
osd.update()
if self.mode == 'play':
-------------------------------------------------------
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