diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-03-19 21:23:39 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-03-19 21:23:39 +0000 |
commit | 9ba4821d933739d923edcb229e7129d939d56d48 (patch) | |
tree | db07388b1b6d2d7d4bb6d098b574347ab24fc3cb /libavformat/mpeg.c | |
parent | 5c3d507f1a9aff13d93fc851a477ddbb2511bf6f (diff) | |
download | ffmpeg-9ba4821d933739d923edcb229e7129d939d56d48.tar.gz |
Split TrueHD decoder from MLP
Originally committed as revision 18045 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r-- | libavformat/mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index b0f45e5343..17b5aba13c 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -487,7 +487,7 @@ static int mpegps_read_packet(AVFormatContext *s, 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; |