From: Antonio Ospite Date: Mon, 28 Nov 2016 12:24:01 +0000 (+0100) Subject: vidi/Player.py: rename the quit() method to stop() X-Git-Url: https://git.ao2.it/vidi-player.git/commitdiff_plain/9a8f764328f6b47707ed24acc9a5e2fc9a4fcf57 vidi/Player.py: rename the quit() method to stop() --- diff --git a/vidi/Player.py b/vidi/Player.py index bd826bc..58c3ece 100755 --- a/vidi/Player.py +++ b/vidi/Player.py @@ -41,13 +41,13 @@ class Player(object): pipeline = Gst.parse_launch(pipeline_string) return Player(pipeline) - def quit(self): + 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.quit() + self.stop() def play(self): self.pipeline.set_state(Gst.State.PLAYING) @@ -55,7 +55,7 @@ class Player(object): try: self.mainloop.run() except KeyboardInterrupt: - self.quit() + self.stop() return 1 return 0