mirror of
https://github.com/mpv-player/mpv
synced 2025-02-20 14:56:55 +00:00
support for Delphine CIN audio and video
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20956 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ed670284fa
commit
25d71db765
@ -1938,6 +1938,14 @@ videocodec ffvmd
|
||||
dll "vmdvideo"
|
||||
out BGR8
|
||||
|
||||
videocodec ffdsicinvideo
|
||||
info "FFmpeg Delphine CIN video"
|
||||
status working
|
||||
fourcc DCIV ; internal MPlayer FourCC
|
||||
driver ffmpeg
|
||||
dll "dsicinvideo"
|
||||
out BGR8
|
||||
|
||||
|
||||
; raw formats: (now RGB formats are autodetected)
|
||||
|
||||
@ -2442,6 +2450,13 @@ audiocodec ffsmkaud
|
||||
driver ffmpeg
|
||||
dll "smackaud"
|
||||
|
||||
audiocodec ffdsicinaudio
|
||||
info "FFmpeg Delphine CIN audio"
|
||||
status working
|
||||
fourcc DCIA ; internal MPlayer FourCC
|
||||
driver ffmpeg
|
||||
dll dsicinaudio
|
||||
|
||||
audiocodec ff4xmadmpcm
|
||||
info "FFmpeg 4XM ADPCM audio"
|
||||
status working
|
||||
|
@ -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_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')},
|
||||
{ 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')},
|
||||
@ -84,6 +85,7 @@ const CodecTag mp_wav_tags[] = {
|
||||
};
|
||||
|
||||
const CodecTag mp_bmp_tags[] = {
|
||||
{ CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')},
|
||||
{ CODEC_ID_TIERTEXSEQVIDEO, MKTAG('T', 'S', 'E', 'Q')},
|
||||
{ CODEC_ID_VMDVIDEO, MKTAG('V', 'M', 'D', 'V')},
|
||||
{ CODEC_ID_XAN_WC3, MKTAG('W', 'C', '3', 'V')},
|
||||
|
Loading…
Reference in New Issue
Block a user