# HG changeset patch # User ramiro # Date 1237497819 0 # Node ID 8c8a4e946d5c434bea2aaaf63b568b8b44531efc # Parent a0e0086f7f52e420fdb01cdaf2efd2786453ea65 Split TrueHD decoder from MLP diff -r a0e0086f7f52 -r 8c8a4e946d5c mpeg.c --- a/mpeg.c Thu Mar 19 18:13:42 2009 +0000 +++ b/mpeg.c Thu Mar 19 21:23:39 2009 +0000 @@ -487,7 +487,7 @@ codec_id = CODEC_ID_PCM_DVD; } else if (startcode >= 0xb0 && startcode <= 0xbf) { type = CODEC_TYPE_AUDIO; - codec_id = CODEC_ID_MLP; + codec_id = CODEC_ID_TRUEHD; } else if (startcode >= 0xc0 && startcode <= 0xcf) { /* Used for both AC-3 and E-AC-3 in EVOB files */ type = CODEC_TYPE_AUDIO;