1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-25 16:33:02 +00:00

Support SEGA CRI adx codec with demuxer lavf.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30875 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2010-03-09 14:33:11 +00:00
parent 4abf80e24c
commit 12d78a9e5c
2 changed files with 8 additions and 0 deletions

View File

@ -3678,6 +3678,13 @@ audiocodec raatrcmac
driver realaud
dll "atrc.bundle/Contents/MacOS/atrc"
audiocodec ffadpcmadx
info "FFmpeg SEGA CRI adx codec"
status working
fourcc Sadx ; internal MPlayer FourCC
driver ffmpeg
dll adpcm_adx
audiocodec ffadpcmimaamv
info "FFmpeg AMV IMA ADPCM audio"
status working

View File

@ -23,6 +23,7 @@
#include "libavformat/riff.h"
static const AVCodecTag mp_wav_tags[] = {
{ CODEC_ID_ADPCM_ADX, MKTAG('S', 'a', 'd', 'x')},
{ CODEC_ID_ADPCM_4XM, MKTAG('4', 'X', 'M', 'A')},
{ CODEC_ID_ADPCM_EA, MKTAG('A', 'D', 'E', 'A')},
{ CODEC_ID_ADPCM_EA_MAXIS_XA, MKTAG('A', 'D', 'X', 'A')},