[MPlayer-cvslog] r20996 - in trunk: etc/codecs.conf libmpdemux/demux_lavf.c

diego subversion at mplayerhq.hu
Fri Nov 17 23:52:58 CET 2006


Author: diego
Date: Fri Nov 17 23:52:57 2006
New Revision: 20996

Modified:
   trunk/etc/codecs.conf
   trunk/libmpdemux/demux_lavf.c

Log:
support for some more fringe formats, still buggy ..


Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf	(original)
+++ trunk/etc/codecs.conf	Fri Nov 17 23:52:57 2006
@@ -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)
 

Modified: trunk/libmpdemux/demux_lavf.c
==============================================================================
--- trunk/libmpdemux/demux_lavf.c	(original)
+++ trunk/libmpdemux/demux_lavf.c	Fri Nov 17 23:52:57 2006
@@ -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 },
 };



More information about the MPlayer-cvslog mailing list