Mercurial > mplayer.hg
changeset 22916:48b3b0aab275
support for THP ADPCM audio
author | diego |
---|---|
date | Sat, 07 Apr 2007 16:31:12 +0000 |
parents | 1cbc0d439cf3 |
children | 60498e21115a |
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 Sat Apr 07 16:14:51 2007 +0000 +++ b/etc/codecs.conf Sat Apr 07 16:31:12 2007 +0000 @@ -2611,6 +2611,13 @@ 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
--- a/libmpdemux/demux_lavf.c Sat Apr 07 16:14:51 2007 +0000 +++ b/libmpdemux/demux_lavf.c Sat Apr 07 16:31:12 2007 +0000 @@ -73,6 +73,7 @@ { 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')},