Commit 13d6ea6c authored by Rafaël Carré's avatar Rafaël Carré

Audio demux: use MLP codec id for .mlp files

Fixes: #8850
parent 59c76c6e
...@@ -151,7 +151,7 @@ static const codec_t p_codecs[] = { ...@@ -151,7 +151,7 @@ static const codec_t p_codecs[] = {
{ VLC_CODEC_A52, true, "a52 audio", A52Probe, A52Init }, { VLC_CODEC_A52, true, "a52 audio", A52Probe, A52Init },
{ VLC_CODEC_EAC3, true, "eac3 audio", EA52Probe, A52Init }, { VLC_CODEC_EAC3, true, "eac3 audio", EA52Probe, A52Init },
{ VLC_CODEC_DTS, false, "dts audio", DtsProbe, DtsInit }, { VLC_CODEC_DTS, false, "dts audio", DtsProbe, DtsInit },
{ VLC_CODEC_TRUEHD, false, "mlp audio", MlpProbe, MlpInit }, { VLC_CODEC_MLP, false, "mlp audio", MlpProbe, MlpInit },
{ 0, false, NULL, NULL, NULL } { 0, false, NULL, NULL, NULL }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment