audioparsers still doesn't support seek properly for flac

This commit is contained in:
Thomas Vander Stichele
2013-01-20 17:57:03 +01:00
parent 58156f91a6
commit 88443aa5ec

View File

@@ -45,10 +45,11 @@ 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.30.1':
return
# the query bug was fixed after 0.10.30 and before 0.10.31
# the seek bug is still there though
# if plugin.get_source() == 'gst-plugins-good' \
# and plugin.get_version() > '0.10.30.1':
# return
registry.remove_plugin(plugin)