summaryrefslogtreecommitdiff
path: root/libavformat/mpegts.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-10-10 21:17:52 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-10-10 21:17:52 +0000
commit0096d766b96291c61561c517ab796bb0e79ce07b (patch)
tree56778873b1c8152650cefd59374830a82b946df7 /libavformat/mpegts.c
parent3bb984987ccfb877a30d2e2daceb1f4c0a618178 (diff)
Allow demuxing of E-AC3 (stream type 0x84) in MPEG-TS.
Originally committed as revision 20200 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r--libavformat/mpegts.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 76efe30e76..f5b7fffb0a 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -512,6 +512,7 @@ static const StreamType HDMV_types[] = {
{ 0x81, CODEC_TYPE_AUDIO, CODEC_ID_AC3 },
{ 0x82, CODEC_TYPE_AUDIO, CODEC_ID_DTS },
{ 0x83, CODEC_TYPE_AUDIO, CODEC_ID_TRUEHD },
+ { 0x84, CODEC_TYPE_AUDIO, CODEC_ID_EAC3 },
{ 0x90, CODEC_TYPE_SUBTITLE, CODEC_ID_HDMV_PGS_SUBTITLE },
{ 0 },
};