From d2672cfa6a04635b64c48259b9884c99fe59753d Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 4 Sep 2011 14:17:47 +0000 Subject: [PATCH] * morituri/common/gstreamer.py: flacparse is busted in gst-plugins-good 0.10.30 too. --- ChangeLog | 5 +++++ morituri/common/gstreamer.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a0cb288..ae63641 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-09-04 Thomas Vander Stichele + + * morituri/common/gstreamer.py: + flacparse is busted in gst-plugins-good 0.10.30 too. + 2011-08-14 Thomas Vander Stichele * morituri/common/program.py: diff --git a/morituri/common/gstreamer.py b/morituri/common/gstreamer.py index a55e246..8635cc2 100644 --- a/morituri/common/gstreamer.py +++ b/morituri/common/gstreamer.py @@ -40,8 +40,9 @@ def removeAudioParsers(): log.debug('gstreamer', 'Found audioparsers plugin from %s %s', plugin.get_source(), plugin.get_version()) + # was fixed after 0.10.30 and before 0.10.31 if plugin.get_source() == 'gst-plugins-good' \ - and plugin.get_version() > '0.10.29.1': + and plugin.get_version() > '0.10.30.1': return registry.remove_plugin(plugin)