[MPlayer-cvslog] r22934 - in trunk: etc/codecs.conf libmpdemux/demux_lavf.c
diego
subversion at mplayerhq.hu
Sat Apr 7 18:31:13 CEST 2007
Author: diego
Date: Sat Apr 7 18:31:12 2007
New Revision: 22934
Modified:
trunk/etc/codecs.conf
trunk/libmpdemux/demux_lavf.c
Log:
support for THP ADPCM audio
Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf (original)
+++ trunk/etc/codecs.conf Sat Apr 7 18:31:12 2007
@@ -2611,6 +2611,13 @@ audiocodec ffxandpcm
driver ffmpeg
dll xan_dpcm
+audiocodec ffadpcmthp
+ info "FFmpeg THP ADPCM audio"
+ status working
+ fourcc THPA
+ driver ffmpeg
+ dll adpcm_thp
+
audiocodec libdv
info "raw DV audio decoder (libdv)"
status working
Modified: trunk/libmpdemux/demux_lavf.c
==============================================================================
--- trunk/libmpdemux/demux_lavf.c (original)
+++ trunk/libmpdemux/demux_lavf.c Sat Apr 7 18:31:12 2007
@@ -73,6 +73,7 @@ static const AVCodecTag mp_wav_tags[] =
{ CODEC_ID_ADPCM_4XM, MKTAG('4', 'X', 'M', 'A')},
{ CODEC_ID_ADPCM_EA, MKTAG('A', 'D', 'E', 'A')},
{ CODEC_ID_ADPCM_IMA_WS, MKTAG('A', 'I', 'W', 'S')},
+ { CODEC_ID_ADPCM_THP, MKTAG('T', 'H', 'P', 'A')},
{ CODEC_ID_AMR_NB, MKTAG('n', 'b', 0, 0)},
{ CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')},
{ CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')},
More information about the MPlayer-cvslog
mailing list