diff options
-rw-r--r-- | etc/codecs.conf | 7 | ||||
-rw-r--r-- | libmpdemux/demux_lavf.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/etc/codecs.conf b/etc/codecs.conf index 762fb81be1..13071960bc 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -2456,6 +2456,13 @@ audiocodec ffadpcmimaws 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 diff --git a/libmpdemux/demux_lavf.c b/libmpdemux/demux_lavf.c index a07485cac6..10e7866192 100644 --- a/libmpdemux/demux_lavf.c +++ b/libmpdemux/demux_lavf.c @@ -74,6 +74,7 @@ int64_t ff_gcd(int64_t a, int64_t b); 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')}, |