mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
ffmpegdec: Setting AC3/EAC3/DTS decoders to rank NONE for release
This still causes issues with bad (missing?) downmixing. They can be handled by existing a52dec/dtsdec See Bug #608892
This commit is contained in:
parent
6d517b3b76
commit
37f5d70332
1 changed files with 8 additions and 0 deletions
|
@ -2984,6 +2984,14 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
||||||
case CODEC_ID_MP3:
|
case CODEC_ID_MP3:
|
||||||
rank = GST_RANK_NONE;
|
rank = GST_RANK_NONE;
|
||||||
break;
|
break;
|
||||||
|
/* TEMPORARILY DISABLING AC3/EAC3/DTS for 0.10.12 release
|
||||||
|
* due to downmixing failure.
|
||||||
|
* See Bug #608892 for more details */
|
||||||
|
case CODEC_ID_EAC3:
|
||||||
|
case CODEC_ID_AC3:
|
||||||
|
case CODEC_ID_DTS:
|
||||||
|
rank = GST_RANK_NONE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
rank = GST_RANK_MARGINAL;
|
rank = GST_RANK_MARGINAL;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue