pitivi r1241 - branches/SOC_2008_SLAKSHMAN/pitivi



Author: slynux
Date: Mon Aug 25 16:42:50 2008
New Revision: 1241
URL: http://svn.gnome.org/viewvc/pitivi?rev=1241&view=rev

Log:
SinkBin timeoverlay Bug fix, set Sources: NULL->READY

Modified:
   branches/SOC_2008_SLAKSHMAN/pitivi/bin.py

Modified: branches/SOC_2008_SLAKSHMAN/pitivi/bin.py
==============================================================================
--- branches/SOC_2008_SLAKSHMAN/pitivi/bin.py	(original)
+++ branches/SOC_2008_SLAKSHMAN/pitivi/bin.py	Mon Aug 25 16:42:50 2008
@@ -527,12 +527,10 @@
 	vqueue = gst.element_factory_make('queue')
 	timeoverlay = gst.element_factory_make('timeoverlay')
 	cspace = gst.element_factory_make('ffmpegcolorspace')
-	cspace2 = gst.element_factory_make('ffmpegcolorspace')
 	vscale = gst.element_factory_make('videoscale')
 	vscale.props.method = 1
-	self.vsinkthread.add(self.videosink,timeoverlay, vqueue, vscale, cspace,cspace2)
-	vqueue.link(cspace2)
-	cspace2.link(timeoverlay)
+	self.vsinkthread.add(self.videosink,timeoverlay, vqueue, vscale, cspace)
+	vqueue.link(timeoverlay)
 	timeoverlay.link(self.videosink)
 	timeoverlay.set_property("halign","right")
 	timeoverlay.set_property("valign","bottom")



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]