ext/ffmpeg/gstffmpegdec.c: Explicitely disable the AAC decoders as they don't work...
authorSebastian Dröge <slomo@circular-chaos.org>
Mon, 26 May 2008 07:43:00 +0000 (07:43 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Mon, 26 May 2008 07:43:00 +0000 (07:43 +0000)
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
Explicitely disable the AAC decoders as they don't work very well
and we have better alternatives. Fixes bug #534392.

ChangeLog
ext/ffmpeg/gstffmpegdec.c

index 7fd2309..0cadae6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2008-05-26  Sebastian Dröge  <slomo@circular-chaos.org>
 
+       * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
+       Explicitely disable the AAC decoders as they don't work very well
+       and we have better alternatives. Fixes bug #534392.
+
+2008-05-26  Sebastian Dröge  <slomo@circular-chaos.org>
+
        Patch by:
            Hans de Goede <j dot w dot r degoede at hhs dot nl>
 
index 744f434..db3fcbb 100644 (file)
@@ -2452,7 +2452,9 @@ gst_ffmpegdec_register (GstPlugin * plugin)
         !strcmp (in_plugin->name, "vorbis") ||
         !strcmp (in_plugin->name, "mpeg1video") ||
         !strcmp (in_plugin->name, "wavpack") ||
-        !strcmp (in_plugin->name, "mp2")) {
+        !strcmp (in_plugin->name, "mp2") ||
+        !strcmp (in_plugin->name, "libfaad") ||
+        !strcmp (in_plugin->name, "mpeg4aac")) {
       GST_LOG ("Ignoring decoder %s", in_plugin->name);
       goto next;
     }