aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-05-31 04:35:05 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-05-31 04:35:05 +0000
commit84c7d45e02f274297d2257e54cb838d50131e1b0 (patch)
tree79d8a32efe24ba979da7441ccd57fb6a8f70a690
parent67c9cd696a2e0c96bfbbccbc7aa4951125a2b152 (diff)
downloadffmpeg-84c7d45e02f274297d2257e54cb838d50131e1b0.tar.gz
0x7a is E-AC3 descriptor
Originally committed as revision 19017 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mpegts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 20d2c86186..2800827cfc 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -523,7 +523,7 @@ static const StreamType REGD_types[] = {
/* descriptor present */
static const StreamType DESC_types[] = {
{ 0x6a, CODEC_TYPE_AUDIO, CODEC_ID_AC3 }, /* AC-3 descriptor */
- { 0x7a, CODEC_TYPE_AUDIO, CODEC_ID_AC3 },
+ { 0x7a, CODEC_TYPE_AUDIO, CODEC_ID_EAC3 }, /* E-AC-3 descriptor */
{ 0x7b, CODEC_TYPE_AUDIO, CODEC_ID_DTS },
{ 0x59, CODEC_TYPE_SUBTITLE, CODEC_ID_DVB_SUBTITLE }, /* subtitling descriptor */
};