From: Antonio Ospite <ao2@ao2.it>
Date: Mon, 28 Nov 2016 12:38:27 +0000 (+0100)
Subject: vidi/Player.py: move the stop() method after the play() method
X-Git-Url: https://git.ao2.it/vidi-player.git/commitdiff_plain/c2484f7aa2f42419a5faac9b0c5b5a62090a89bd

vidi/Player.py: move the stop() method after the play() method

For consistency with the Timeline class.
---

diff --git a/vidi/Player.py b/vidi/Player.py
index 15a4d07..cf30f9f 100755
--- a/vidi/Player.py
+++ b/vidi/Player.py
@@ -41,10 +41,6 @@ class Player(object):
         pipeline = Gst.parse_launch(pipeline_string)
         return Player(pipeline)
 
-    def stop(self):
-        self.mainloop.quit()
-        self.pipeline.set_state(Gst.State.NULL)
-
     def bus_message_cb(self, unused_bus, message):
         if message.type == Gst.MessageType.EOS:
             self.stop()
@@ -52,3 +48,7 @@ class Player(object):
     def play(self):
         self.pipeline.set_state(Gst.State.PLAYING)
         self.mainloop.run()
+
+    def stop(self):
+        self.mainloop.quit()
+        self.pipeline.set_state(Gst.State.NULL)