changeset 20936:334ddfb704f1

support for Interplay DPCM audio
author diego
date Thu, 16 Nov 2006 01:17:19 +0000
parents 4a8c67e44c7f
children 51a2f19c6cbf
files etc/codecs.conf libmpdemux/demux_lavf.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/codecs.conf	Thu Nov 16 00:59:01 2006 +0000
+++ b/etc/codecs.conf	Thu Nov 16 01:17:19 2006 +0000
@@ -2456,6 +2456,13 @@
   driver ffmpeg
   dll adpcm_ima_ws
 
+audiocodec ffinterplaydpcm
+  info "FFmpeg Interplay DPCM audio"
+  status working
+  fourcc INPA
+  driver ffmpeg
+  dll interplay_dpcm
+
 audiocodec libdv
   info "raw DV audio decoder (libdv)"
   status working
--- a/libmpdemux/demux_lavf.c	Thu Nov 16 00:59:01 2006 +0000
+++ b/libmpdemux/demux_lavf.c	Thu Nov 16 01:17:19 2006 +0000
@@ -74,6 +74,7 @@
 const CodecTag mp_wav_tags[] = {
     { CODEC_ID_ADPCM_4XM,     MKTAG('4', 'X', 'M', 'A')},
     { CODEC_ID_ADPCM_IMA_WS,  MKTAG('A', 'I', 'W', 'S')},
+    { CODEC_ID_INTERPLAY_DPCM,MKTAG('I', 'N', 'P', 'A')},
     { CODEC_ID_PCM_S24BE,     MKTAG('i', 'n', '2', '4')},
     { CODEC_ID_PCM_S8,        MKTAG('t', 'w', 'o', 's')},
     { CODEC_ID_SHORTEN,       MKTAG('s', 'h', 'r', 'n')},