]> git.sesse.net Git - ffmpeg/commitdiff
lswr/rematrix: specify explicitly the name of the unsupported channel layouts
authorStefano Sabatini <stefasab@gmail.com>
Thu, 21 Jun 2012 09:53:50 +0000 (11:53 +0200)
committerStefano Sabatini <stefasab@gmail.com>
Thu, 21 Jun 2012 10:47:47 +0000 (12:47 +0200)
Help debugging.

libswresample/rematrix.c

index aa66487cd5fd4693d0cf141fe94eb9e049e21082..3784111854b0beb8a5e597c33b96c8f685f86cdc 100644 (file)
@@ -125,6 +125,7 @@ static int auto_matrix(SwrContext *s)
     double matrix[64][64]={{0}};
     int64_t unaccounted= s->in_ch_layout & ~s->out_ch_layout;
     double maxcoef=0;
+    char buf[128];
 
     memset(s->matrix, 0, sizeof(s->matrix));
     for(i=0; i<64; i++){
@@ -133,11 +134,13 @@ static int auto_matrix(SwrContext *s)
     }
 
     if(!sane_layout(s->in_ch_layout)){
-        av_log(s, AV_LOG_ERROR, "Input channel layout isnt supported\n");
+        av_get_channel_layout_string(buf, sizeof(buf), -1, s->in_ch_layout);
+        av_log(s, AV_LOG_ERROR, "Input channel layout '%s' is not supported\n", buf);
         return AVERROR(EINVAL);
     }
     if(!sane_layout(s->out_ch_layout)){
-        av_log(s, AV_LOG_ERROR, "Output channel layout isnt supported\n");
+        av_get_channel_layout_string(buf, sizeof(buf), -1, s->out_ch_layout);
+        av_log(s, AV_LOG_ERROR, "Output channel layout '%s' is not supported\n", buf);
         return AVERROR(EINVAL);
     }