[MPlayer-cvslog] r24792 - in trunk: etc/codecs.conf libmpdemux/demux_lavf.c
compn
subversion at mplayerhq.hu
Tue Oct 16 15:06:35 CEST 2007
Author: compn
Date: Tue Oct 16 15:06:35 2007
New Revision: 24792
Log:
add nellymoser codec to mplayer with internal fourcc NELL
Modified:
trunk/etc/codecs.conf
trunk/libmpdemux/demux_lavf.c
Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf (original)
+++ trunk/etc/codecs.conf Tue Oct 16 15:06:35 2007
@@ -2747,6 +2747,13 @@ audiocodec ffape
driver ffmpeg
dll "ape"
+audiocodec ffnellymoser
+ info "FFmpeg Nellymoser Audio decoder"
+ status working
+ fourcc "NELL" ; internal MPlayer FourCC
+ driver ffmpeg
+ dll "nellymoser"
+
audiocodec pcm
info "Uncompressed PCM"
status working
Modified: trunk/libmpdemux/demux_lavf.c
==============================================================================
--- trunk/libmpdemux/demux_lavf.c (original)
+++ trunk/libmpdemux/demux_lavf.c Tue Oct 16 15:06:35 2007
@@ -86,6 +86,7 @@ static const AVCodecTag mp_wav_tags[] =
{ CODEC_ID_DSICINAUDIO, MKTAG('D', 'C', 'I', 'A')},
{ CODEC_ID_INTERPLAY_DPCM, MKTAG('I', 'N', 'P', 'A')},
{ CODEC_ID_MUSEPACK7, MKTAG('M', 'P', 'C', ' ')},
+ { CODEC_ID_NELLYMOSER, MKTAG('N', 'E', 'L', 'L')},
{ CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4')},
{ CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's')},
{ CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')},
More information about the MPlayer-cvslog
mailing list