[FFmpeg-soc] [soc]: r5112 - als/alsdec.c

thilo.borgmann subversion at mplayerhq.hu
Sat Aug 15 12:51:32 CEST 2009


Author: thilo.borgmann
Date: Sat Aug 15 12:51:32 2009
New Revision: 5112

Log:
Add channel sorting to the unsupported features.

Modified:
   als/alsdec.c

Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c	Sat Aug 15 12:47:18 2009	(r5111)
+++ als/alsdec.c	Sat Aug 15 12:51:32 2009	(r5112)
@@ -324,6 +324,11 @@ static int check_specific_config(ALSDecC
         error = -1;
     }
 
+    if (sconf->chan_sort) {
+        av_log_missing_feature(ctx->avctx, "Channel sorting", 0);
+        error = -1;
+    }
+
     if (sconf->rlslms) {
         av_log_missing_feature(ctx->avctx, "Adaptive RLS-LMS prediction", 0);
         error = -1;


More information about the FFmpeg-soc mailing list