* morituri/common/gstreamer.py:

flacparse is busted in gst-plugins-good 0.10.30 too.
This commit is contained in:
Thomas Vander Stichele
2011-09-04 14:17:47 +00:00
parent e6176d8b8c
commit d2672cfa6a
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2011-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/gstreamer.py:
flacparse is busted in gst-plugins-good 0.10.30 too.
2011-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:

View File

@@ -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)