Remove call to stop() on LocalPlaybackController init

This commit is contained in:
Stein Magnus Jodal 2010-11-03 23:23:30 +01:00
parent ff6a484add
commit 7accf783ca

View File

@ -50,12 +50,6 @@ class LocalBackend(Backend):
class LocalPlaybackController(PlaybackController):
def __init__(self, *args, **kwargs):
super(LocalPlaybackController, self).__init__(*args, **kwargs)
# XXX Why do we call stop()? Is it to set GStreamer state to 'READY'?
self.stop()
@property
def time_position(self):
return self.backend.output.get_position()