updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / istanbul / 02-audio_eos.patch
blobe7a77c900880faea37a2f7e3f00215c424efb0d1
1 From: Florian Boucault <florian@boucault.net>
2 Subject: Patch fixing audio recording
3 Origin: upstream
4 Bug: https://bugzilla.gnome.org/show_bug.cgi?id=430151
5 Bug-Debian: http://bugs.debian.org/486660
7 Index: istanbul-0.2.2.orig/istanbul/main/screencast.py
8 ===================================================================
9 --- istanbul-0.2.2.orig/istanbul/main/screencast.py (révision 131)
10 +++ istanbul-0.2.2.orig/istanbul/main/screencast.py (copie de travail)
11 @@ -135,7 +135,7 @@
12 m.run()
13 m.destroy()
14 self.finished_callback(message)
15 - elif message.type == gst.MESSAGE_EOS:
16 + elif message.type == gst.MESSAGE_EOS or message.type == gst.MESSAGE_CLOCK_LOST:
17 self._pipeline.set_state(gst.STATE_NULL)
18 self.on_eos()