From f18fd9fc68975962863c048b5ca11586f3f26fd6 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Mon, 28 Nov 2016 13:22:13 +0100 Subject: [PATCH] vidi/Player.py: move the signal callback initialization to the __init__ method --- vidi/Player.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vidi/Player.py b/vidi/Player.py index 26a9832..bd826bc 100755 --- a/vidi/Player.py +++ b/vidi/Player.py @@ -30,6 +30,10 @@ GObject.threads_init() class Player(object): def __init__(self, pipeline): self.pipeline = pipeline + bus = self.pipeline.get_bus() + bus.add_signal_watch() + bus.connect("message", self.bus_message_cb) + self.mainloop = GObject.MainLoop() @staticmethod @@ -46,10 +50,6 @@ class Player(object): self.quit() def play(self): - bus = self.pipeline.get_bus() - bus.add_signal_watch() - bus.connect("message", self.bus_message_cb) - self.pipeline.set_state(Gst.State.PLAYING) try: -- 2.1.4