From 88443aa5ec99ff6f9f6f869375063663b31b1d81 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 20 Jan 2013 17:57:03 +0100 Subject: [PATCH] audioparsers still doesn't support seek properly for flac --- morituri/common/gstreamer.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/morituri/common/gstreamer.py b/morituri/common/gstreamer.py index 16fdbb6..f1a2a56 100644 --- a/morituri/common/gstreamer.py +++ b/morituri/common/gstreamer.py @@ -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)