Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Hickey <bugfood-ml@fatooh.org>2005-11-13 12:18:14 +0300
committerGuillaume Poirier <gpoirier@mplayerhq.hu>2005-11-13 12:18:14 +0300
commit1fd7ec4412f83fa669e75b88cba711718397bb78 (patch)
tree50dbe12feff026c1e2584bbafad4390df364dd1e /libavformat/wav.c
parent5ef388e537394a98c8fdda44d311b64ff2ac103f (diff)
DTS is 0x2001 according to: http://www1.mplayerhq.hu/MPlayer/DOCS/codecs-status.html
Patch by Corey Hickey < bugfood DAH ml AH fatooh POIS org > Originally committed as revision 4700 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index b51e2ce004..0dc4bd39b9 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -23,6 +23,7 @@ const CodecTag codec_wav_tags[] = {
{ CODEC_ID_MP2, 0x50 },
{ CODEC_ID_MP3, 0x55 },
{ CODEC_ID_AC3, 0x2000 },
+ { CODEC_ID_DTS, 0x2001 },
{ CODEC_ID_PCM_S16LE, 0x01 },
{ CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */
{ CODEC_ID_PCM_S24LE, 0x01 },