]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/af_amerge: properly handle unknown input layouts
authorMarton Balint <cus@passwd.hu>
Thu, 15 Dec 2016 02:28:20 +0000 (03:28 +0100)
committerMarton Balint <cus@passwd.hu>
Sun, 25 Dec 2016 20:10:03 +0000 (21:10 +0100)
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Marton Balint <cus@passwd.hu>
libavfilter/af_amerge.c

index 40bf7ab209a14eddea76b3cdcbe833fd48e124f7..8ea01e206bd55766fce541fd96bfde43a0c472ba 100644 (file)
@@ -96,10 +96,15 @@ static int query_formats(AVFilterContext *ctx)
             av_get_channel_layout_string(buf, sizeof(buf), 0, inlayout[i]);
             av_log(ctx, AV_LOG_INFO, "Using \"%s\" for input %d\n", buf, i + 1);
         }
-        s->in[i].nb_ch = av_get_channel_layout_nb_channels(inlayout[i]);
-        if (outlayout & inlayout[i])
+        s->in[i].nb_ch = FF_LAYOUT2COUNT(inlayout[i]);
+        if (s->in[i].nb_ch) {
             overlap++;
-        outlayout |= inlayout[i];
+        } else {
+            s->in[i].nb_ch = av_get_channel_layout_nb_channels(inlayout[i]);
+            if (outlayout & inlayout[i])
+                overlap++;
+            outlayout |= inlayout[i];
+        }
         nb_ch += s->in[i].nb_ch;
     }
     if (nb_ch > SWR_CH_MAX) {