Commit 30151944 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/amerge: clarify the error message in case of input overlap

parent bbae8cdf
......@@ -102,7 +102,8 @@ static int query_formats(AVFilterContext *ctx)
}
if (overlap) {
av_log(ctx, AV_LOG_WARNING,
"Inputs overlap: output layout will be meaningless\n");
"Input channel layouts overlap: "
"output layout will be determined by the number of distinct input channels\n");
for (i = 0; i < nb_ch; i++)
am->route[i] = i;
outlayout = av_get_default_channel_layout(nb_ch);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment