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)