changeset 30562:44c7925b0dee

Support FFmpeg's ALS decoder.
author reimar
date Tue, 16 Feb 2010 21:54:50 +0000
parents 84d86f175613
children 007b3397591f
files etc/codecs.conf libmpdemux/mp_taglists.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/codecs.conf	Tue Feb 16 19:39:30 2010 +0000
+++ b/etc/codecs.conf	Tue Feb 16 21:54:50 2010 +0000
@@ -3925,6 +3925,13 @@
   driver ffmpeg
   dll "ape"
 
+audiocodec ffals
+  info "FFmpeg ALS"
+  status working
+  fourcc "ALS "
+  driver ffmpeg
+  dll "als"
+
 audiocodec ffmlp
   info "FFmpeg MLP"
   status working
--- a/libmpdemux/mp_taglists.c	Tue Feb 16 19:39:30 2010 +0000
+++ b/libmpdemux/mp_taglists.c	Tue Feb 16 21:54:50 2010 +0000
@@ -36,6 +36,7 @@
     { CODEC_ID_INTERPLAY_DPCM,    MKTAG('I', 'N', 'P', 'A')},
     { CODEC_ID_MLP,               MKTAG('M', 'L', 'P', ' ')},
     { CODEC_ID_MP1,               0x50},
+    { CODEC_ID_MP4ALS,            MKTAG('A', 'L', 'S', ' ')},
     { CODEC_ID_MUSEPACK7,         MKTAG('M', 'P', 'C', ' ')},
     { CODEC_ID_MUSEPACK8,         MKTAG('M', 'P', 'C', '8')},
     { CODEC_ID_NELLYMOSER,        MKTAG('N', 'E', 'L', 'L')},