summaryrefslogtreecommitdiff
path: root/libavformat/matroska.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-07-14 01:32:14 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-07-14 01:32:14 +0000
commit23c992532927afa9d3a00677ff40cd071e21dc8f (patch)
tree232b97558b925172d4c6372c10a5c7e156469f27 /libavformat/matroska.c
parenteb507b21c410515b179c0ca85b3db3d83fc296bd (diff)
libdts support by (Benjamin Zores <ben at geexbox dot org>)
Originally committed as revision 3310 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r--libavformat/matroska.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c
index edd5342816..9d80302f2c 100644
--- a/libavformat/matroska.c
+++ b/libavformat/matroska.c
@@ -2228,6 +2228,9 @@ matroska_read_header (AVFormatContext *s,
else if (!strcmp(track->codec_id,
MATROSKA_CODEC_ID_AUDIO_AC3))
codec_id = CODEC_ID_AC3;
+ else if (!strcmp(track->codec_id,
+ MATROSKA_CODEC_ID_AUDIO_DTS))
+ codec_id = CODEC_ID_DTS;
/* No such codec id so far. */
/* else if (!strcmp(track->codec_id, */
/* MATROSKA_CODEC_ID_AUDIO_DTS)) */