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

compn subversion at mplayerhq.hu
Thu Sep 29 04:44:49 CEST 2011


Author: compn
Date: Thu Sep 29 04:44:48 2011
New Revision: 34150

Log:
decoder: add ffmpeg ansi decoder

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

Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf	Wed Sep 28 20:52:11 2011	(r34149)
+++ trunk/etc/codecs.conf	Thu Sep 29 04:44:48 2011	(r34150)
@@ -17,6 +17,14 @@ videocodec ffanm
   dll anm
   out BGR8
 
+videocodec ffansi
+  info "FFmpeg ASCII/ANSI art"
+  status working
+  fourcc TXT4 ; internal MPlayer FourCC
+  driver ffmpeg
+  dll ansi
+  out BGR8
+
 videocodec ffbinkvideo
   info "FFmpeg Bink Video"
   status working

Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c	Wed Sep 28 20:52:11 2011	(r34149)
+++ trunk/libmpdemux/mp_taglists.c	Thu Sep 29 04:44:48 2011	(r34150)
@@ -94,6 +94,7 @@ const struct AVCodecTag * const mp_codec
 static const AVCodecTag mp_bmp_tags[] = {
     { CODEC_ID_AMV,               MKTAG('A', 'M', 'V', 'V')},
     { CODEC_ID_ANM,               MKTAG('A', 'N', 'M', ' ')},
+    { CODEC_ID_ANSI,              MKTAG('T', 'X', 'T', '4')},
     { CODEC_ID_AVS,               MKTAG('A', 'V', 'S', ' ')},
     { CODEC_ID_BETHSOFTVID,       MKTAG('B', 'E', 'T', 'H')},
     { CODEC_ID_BFI,               MKTAG('B', 'F', 'I', 'V')},


More information about the MPlayer-cvslog mailing list