[MPlayer-cvslog] r26491 - in trunk: Changelog etc/codecs.conf libmpdemux/mp_taglists.c
diego
subversion at mplayerhq.hu
Tue Apr 22 12:14:55 CEST 2008
Author: diego
Date: Tue Apr 22 12:14:55 2008
New Revision: 26491
Log:
Add BFI video support through FFmpeg.
Modified:
trunk/Changelog
trunk/etc/codecs.conf
trunk/libmpdemux/mp_taglists.c
Modified: trunk/Changelog
==============================================================================
--- trunk/Changelog (original)
+++ trunk/Changelog Tue Apr 22 12:14:55 2008
@@ -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
Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf (original)
+++ trunk/etc/codecs.conf Tue Apr 22 12:14:55 2008
@@ -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"
Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c (original)
+++ trunk/libmpdemux/mp_taglists.c Tue Apr 22 12:14:55 2008
@@ -60,6 +60,7 @@ const struct AVCodecTag *mp_wav_override
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')},
More information about the MPlayer-cvslog
mailing list