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

Add BFI video support through FFmpeg.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26491 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-22 10:14:55 +00:00
parent 05bc68ae36
commit 6c2394f0b4
3 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,7 @@ MPlayer (1.0)
* Support for DTS WAV/DTS-CD passthrough by ad_hwac3 * Support for DTS WAV/DTS-CD passthrough by ad_hwac3
* Apple's raw YUV2 in MOV * Apple's raw YUV2 in MOV
* LATM over LOAS AAC decoding via internal libfaad2 * LATM over LOAS AAC decoding via internal libfaad2
* Video game codecs: BFI video
Demuxers: Demuxers:
* -lavfdopts cryptokey allows decrypting MXF and ASF files * -lavfdopts cryptokey allows decrypting MXF and ASF files

View File

@ -2095,6 +2095,14 @@ videocodec ffthp
dll thp dll thp
out YV12 out YV12
videocodec ffbfi
info "FFmpeg BFI Video"
status working
fourcc BFIV ; internal MPlayer FourCC
driver ffmpeg
dll bfi
out BGR8
videocodec ffbethsoftvid videocodec ffbethsoftvid
info "FFmpeg Bethesda Software VID" info "FFmpeg Bethesda Software VID"
comment "video plays much too fast" comment "video plays much too fast"

View File

@ -60,6 +60,7 @@ const struct AVCodecTag *mp_wav_override_taglists[] = {mp_wav_override_tags, 0};
static const AVCodecTag mp_bmp_tags[] = { static const AVCodecTag mp_bmp_tags[] = {
{ CODEC_ID_AMV, MKTAG('A', 'M', 'V', 'V')}, { CODEC_ID_AMV, MKTAG('A', 'M', 'V', 'V')},
{ CODEC_ID_BETHSOFTVID, MKTAG('B', 'E', 'T', 'H')}, { CODEC_ID_BETHSOFTVID, MKTAG('B', 'E', 'T', 'H')},
{ CODEC_ID_BFI, MKTAG('B', 'F', 'I', 'V')},
{ CODEC_ID_C93, MKTAG('C', '9', '3', 'V')}, { CODEC_ID_C93, MKTAG('C', '9', '3', 'V')},
{ CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')}, { CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')},
{ CODEC_ID_DXA, MKTAG('D', 'X', 'A', '1')}, { CODEC_ID_DXA, MKTAG('D', 'X', 'A', '1')},