[MPlayer-cvslog] r35280 - in trunk: etc/codecs.conf libmpdemux/mp_taglists.c

cehoyos subversion at mplayerhq.hu
Tue Oct 30 12:32:06 CET 2012


Author: cehoyos
Date: Tue Oct 30 12:32:05 2012
New Revision: 35280

Log:
Support FFmpeg YOP decoder.

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

Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf	Sun Oct 28 21:55:47 2012	(r35279)
+++ trunk/etc/codecs.conf	Tue Oct 30 12:32:05 2012	(r35280)
@@ -724,6 +724,14 @@ videocodec ffsunras
   dll sunrast
   out BGR24,BGR8,Y800,RGB24,RGBA,BGRA
 
+videocodec ffyop
+  info "FFmpeg Psygnosis YOP"
+  status working
+  fourcc YOP1
+  driver ffmpeg
+  dll yop
+  out BGR8
+
 videocodec ffindeo3
   info "FFmpeg Intel Indeo 3.1/3.2"
   status working

Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c	Sun Oct 28 21:55:47 2012	(r35279)
+++ trunk/libmpdemux/mp_taglists.c	Tue Oct 30 12:32:05 2012	(r35280)
@@ -170,6 +170,7 @@ static const struct AVCodecTag mp_bmp_ta
     { 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')},
+    { CODEC_ID_YOP,               MKTAG('Y', 'O', 'P', '1')},
     { 0, 0 },
 };
 


More information about the MPlayer-cvslog mailing list