wingo - in flumotion/trunk: . flumotion/component
flumotion-commit at lists.fluendo.com
flumotion-commit at lists.fluendo.com
Thu Sep 27 13:33:23 CEST 2007
Author: wingo
Date: Thu Sep 27 13:33:19 2007
New Revision: 5558
Modified:
flumotion/trunk/ChangeLog
flumotion/trunk/flumotion/component/feedcomponent010.py
Log:
(FeedComponent.provide_master_clock.pipelinePaused): Fuck python's
lexicals!!!!!
Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog (original)
+++ flumotion/trunk/ChangeLog Thu Sep 27 13:33:19 2007
@@ -3,6 +3,8 @@
* flumotion/component/feedcomponent010.py
(FeedComponent.provide_master_clock.pipelinePaused): Get the
listening port from the time provider.
+ (FeedComponent.provide_master_clock.pipelinePaused): Fuck python's
+ lexicals!!!!!
* flumotion/common/worker.py (PortSet.reservePorts): Avoid
infinite loops.
Modified: flumotion/trunk/flumotion/component/feedcomponent010.py
==============================================================================
--- flumotion/trunk/flumotion/component/feedcomponent010.py (original)
+++ flumotion/trunk/flumotion/component/feedcomponent010.py Thu Sep 27 13:33:19 2007
@@ -415,7 +415,7 @@
self.pipeline.use_clock(clock)
self.clock_provider = gst.NetTimeProvider(clock, None, port)
- port = self.clock_provider.get_property('port')
+ realport = self.clock_provider.get_property('port')
base_time = self.pipeline.get_base_time()
@@ -430,7 +430,7 @@
else:
ip = "127.0.0.1"
- self._master_clock_info = (ip, port, base_time)
+ self._master_clock_info = (ip, realport, base_time)
return self.get_master_clock()
assert self.pipeline
More information about the flumotion-commit
mailing list