[vlc-commits] Audio demux: use MLP codec id for .mlp files
Rafaël Carré
git at videolan.org
Mon Jul 22 17:48:48 CEST 2013
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Mon Jul 22 17:47:55 2013 +0200| [13d6ea6cc9ddc737e285becc48bbdf1689cc6fc8] | committer: Rafaël Carré
Audio demux: use MLP codec id for .mlp files
Fixes: #8850
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=13d6ea6cc9ddc737e285becc48bbdf1689cc6fc8
---
modules/demux/mpeg/es.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/mpeg/es.c b/modules/demux/mpeg/es.c
index 5d5da94..98e9df2 100644
--- a/modules/demux/mpeg/es.c
+++ b/modules/demux/mpeg/es.c
@@ -151,7 +151,7 @@ static const codec_t p_codecs[] = {
{ VLC_CODEC_A52, true, "a52 audio", A52Probe, A52Init },
{ VLC_CODEC_EAC3, true, "eac3 audio", EA52Probe, A52Init },
{ 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 }
};
More information about the vlc-commits
mailing list