0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

support for THP ADPCM audio

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22934 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-04-07 16:31:12 +00:00
parent 8d62ac3446
commit 31a7f77164
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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')},