From: Sebastian Dröge Date: Mon, 26 May 2008 07:43:00 +0000 (+0000) Subject: ext/ffmpeg/gstffmpegdec.c: Explicitely disable the AAC decoders as they don't work... X-Git-Tag: 1.19.3~499^2~1513 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0378202dc85bb7a97ce03aa1f7ccaee86dd159d0;p=platform%2Fupstream%2Fgstreamer.git ext/ffmpeg/gstffmpegdec.c: Explicitely disable the AAC decoders as they don't work very well and we have better alter... 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. --- diff --git a/ChangeLog b/ChangeLog index 7fd2309..0cadae6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2008-05-26 Sebastian Dröge + * 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 + Patch by: Hans de Goede diff --git a/ext/ffmpeg/gstffmpegdec.c b/ext/ffmpeg/gstffmpegdec.c index 744f434..db3fcbb 100644 --- a/ext/ffmpeg/gstffmpegdec.c +++ b/ext/ffmpeg/gstffmpegdec.c @@ -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; }