mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
ffmpegdec: Set the mp3 decoder to a rank of NONE
It's just causing too many headaches. This will force people to use a working mp3 decoder, like mad.
This commit is contained in:
parent
051e2de3d3
commit
2de5aaf22d
1 changed files with 3 additions and 0 deletions
|
@ -2936,6 +2936,9 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
|||
case CODEC_ID_SIPR:
|
||||
rank = GST_RANK_SECONDARY;
|
||||
break;
|
||||
case CODEC_ID_MP3:
|
||||
rank = GST_RANK_NONE;
|
||||
break;
|
||||
default:
|
||||
rank = GST_RANK_MARGINAL;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue