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

support for C93 video

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22936 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-04-07 16:50:33 +00:00
parent 3e8e92dc2f
commit 224fd95f9c
2 changed files with 9 additions and 0 deletions

View File

@ -2035,6 +2035,14 @@ videocodec ffvqa
dll "vqavideo"
out BGR8
videocodec ffc93
info "FFmpeg C93 Video"
status buggy
fourcc C93V ; internal MPlayer FourCC
driver ffmpeg
dll c93
out BGR8
; raw formats: (now RGB formats are autodetected)

View File

@ -93,6 +93,7 @@ static const AVCodecTag mp_wav_tags[] = {
const struct AVCodecTag *mp_wav_taglists[] = {codec_wav_tags, mp_wav_tags, 0};
static const AVCodecTag mp_bmp_tags[] = {
{ CODEC_ID_C93, MKTAG('C', '9', '3', 'V')},
{ CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')},
{ CODEC_ID_DXA, MKTAG('D', 'X', 'A', '1')},
{ CODEC_ID_FLIC, MKTAG('F', 'L', 'I', 'C')},