mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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.
This commit is contained in:
parent
2b248e29ff
commit
0378202dc8
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
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>
|
2008-05-26 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
Patch by:
|
Patch by:
|
||||||
|
|
|
@ -2452,7 +2452,9 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
||||||
!strcmp (in_plugin->name, "vorbis") ||
|
!strcmp (in_plugin->name, "vorbis") ||
|
||||||
!strcmp (in_plugin->name, "mpeg1video") ||
|
!strcmp (in_plugin->name, "mpeg1video") ||
|
||||||
!strcmp (in_plugin->name, "wavpack") ||
|
!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);
|
GST_LOG ("Ignoring decoder %s", in_plugin->name);
|
||||||
goto next;
|
goto next;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue