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

cehoyos subversion at mplayerhq.hu
Fri Oct 7 17:55:57 CEST 2011


Author: cehoyos
Date: Fri Oct  7 17:55:57 2011
New Revision: 34184

Log:
Support decoding 8SVX in IFF.

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

Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf	Fri Oct  7 17:23:55 2011	(r34183)
+++ trunk/etc/codecs.conf	Fri Oct  7 17:55:57 2011	(r34184)
@@ -5182,6 +5182,27 @@ audiocodec TwinVQ
   driver vqf
   dll "tvqdec.dll"
 
+audiocodec ff8svxraw
+  info "FFmpeg 8SVX raw"
+  status working
+  fourcc 8raw ; internal MPlayer FourCC
+  driver ffmpeg
+  dll 8svx_raw
+
+audiocodec ff8svxexp
+  info "FFmpeg 8SVX exponential"
+  status working
+  fourcc 8exp ; internal MPlayer FourCC
+  driver ffmpeg
+  dll 8svx_exp
+
+audiocodec ff8svxfib
+  info "FFmpeg 8SVX fibonacci"
+  status working
+  fourcc 8fib ; internal MPlayer FourCC
+  driver ffmpeg
+  dll 8svx_fib
+
 audiocodec hwmpa
   info "MPEG audio pass-through for hardware MPEG decoders"
   status working

Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c	Fri Oct  7 17:23:55 2011	(r34183)
+++ trunk/libmpdemux/mp_taglists.c	Fri Oct  7 17:55:57 2011	(r34184)
@@ -63,6 +63,9 @@ static const AVCodecTag mp_wav_tags[] = 
 const struct AVCodecTag * const mp_wav_taglists[] = {ff_codec_wav_tags, mp_wav_tags, 0};
 
 static const AVCodecTag mp_codecid_override_tags[] = {
+    { CODEC_ID_8SVX_EXP,          MKTAG('8', 'e', 'x', 'p')},
+    { CODEC_ID_8SVX_FIB,          MKTAG('8', 'f', 'i', 'b')},
+    { CODEC_ID_8SVX_RAW,          MKTAG('8', 'r', 'a', 'w')},
     { CODEC_ID_AAC,               MKTAG('M', 'P', '4', 'A')},
     { CODEC_ID_AAC_LATM,          MKTAG('M', 'P', '4', 'L')},
     { CODEC_ID_AC3,               0x2000},


More information about the MPlayer-cvslog mailing list