Mercurial > mplayer.hg
changeset 20980:70ca50bcc4a8
support for some more fringe formats, still buggy ..
author | diego |
---|---|
date | Fri, 17 Nov 2006 22:52:57 +0000 |
parents | 7909e90e01c1 |
children | 22cb9d5f1e21 |
files | etc/codecs.conf libmpdemux/demux_lavf.c |
diffstat | 2 files changed, 35 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/etc/codecs.conf Fri Nov 17 20:13:21 2006 +0000 +++ b/etc/codecs.conf Fri Nov 17 22:52:57 2006 +0000 @@ -1946,6 +1946,38 @@ dll "dsicinvideo" out BGR8 +videocodec ffwc3 + info "FFmpeg XAN wc3" + status buggy + fourcc WC3V ; internal MPlayer FourCC + driver ffmpeg + dll "xan_wc3" + out BGR8 + +videocodec ffidcin + info "FFmpeg idcinvideo" + status buggy + fourcc IDCI ; internal MPlayer FourCC + driver ffmpeg + dll "idcinvideo" + out BGR8 + +videocodec ffinterplay + info "FFmpeg Interplay Video" + status buggy + fourcc INPV ; internal MPlayer FourCC + driver ffmpeg + dll "interplayvideo" + out BGR8 + +videocodec ffvqa + info "FFmpeg VQA Video" + status buggy + fourcc VQAV ; internal MPlayer FourCC + driver ffmpeg + dll "vqavideo" + out BGR8 + ; raw formats: (now RGB formats are autodetected)
--- a/libmpdemux/demux_lavf.c Fri Nov 17 20:13:21 2006 +0000 +++ b/libmpdemux/demux_lavf.c Fri Nov 17 22:52:57 2006 +0000 @@ -89,9 +89,12 @@ const CodecTag mp_bmp_tags[] = { { CODEC_ID_DSICINVIDEO, MKTAG('D', 'C', 'I', 'V')}, { CODEC_ID_FLIC, MKTAG('F', 'L', 'I', 'C')}, + { CODEC_ID_IDCIN, MKTAG('I', 'D', 'C', 'I')}, + { CODEC_ID_INTERPLAY_VIDEO, MKTAG('I', 'N', 'P', 'V')}, { CODEC_ID_ROQ, MKTAG('R', 'o', 'Q', 'V')}, { CODEC_ID_TIERTEXSEQVIDEO, MKTAG('T', 'S', 'E', 'Q')}, { CODEC_ID_VMDVIDEO, MKTAG('V', 'M', 'D', 'V')}, + { CODEC_ID_WS_VQA, MKTAG('V', 'Q', 'A', 'V')}, { CODEC_ID_XAN_WC3, MKTAG('W', 'C', '3', 'V')}, { 0, 0 }, };