mirror of https://github.com/mpv-player/mpv
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:
parent
05bc68ae36
commit
6c2394f0b4
|
@ -7,6 +7,7 @@ MPlayer (1.0)
|
|||
* Support for DTS WAV/DTS-CD passthrough by ad_hwac3
|
||||
* Apple's raw YUV2 in MOV
|
||||
* LATM over LOAS AAC decoding via internal libfaad2
|
||||
* Video game codecs: BFI video
|
||||
|
||||
Demuxers:
|
||||
* -lavfdopts cryptokey allows decrypting MXF and ASF files
|
||||
|
|
|
@ -2095,6 +2095,14 @@ videocodec ffthp
|
|||
dll thp
|
||||
out YV12
|
||||
|
||||
videocodec ffbfi
|
||||
info "FFmpeg BFI Video"
|
||||
status working
|
||||
fourcc BFIV ; internal MPlayer FourCC
|
||||
driver ffmpeg
|
||||
dll bfi
|
||||
out BGR8
|
||||
|
||||
videocodec ffbethsoftvid
|
||||
info "FFmpeg Bethesda Software VID"
|
||||
comment "video plays much too fast"
|
||||
|
|
|
@ -60,6 +60,7 @@ const struct AVCodecTag *mp_wav_override_taglists[] = {mp_wav_override_tags, 0};
|
|||
static const AVCodecTag mp_bmp_tags[] = {
|
||||
{ CODEC_ID_AMV, MKTAG('A', 'M', 'V', 'V')},
|
||||
{ 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_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')},
|
||||
{ CODEC_ID_DXA, MKTAG('D', 'X', 'A', '1')},
|
||||
|
|
Loading…
Reference in New Issue