mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/amerge: clarify the error message in case of input overlap
This commit is contained in:
parent
bbae8cdf4d
commit
3015194448
@ -102,7 +102,8 @@ static int query_formats(AVFilterContext *ctx)
|
|||||||
}
|
}
|
||||||
if (overlap) {
|
if (overlap) {
|
||||||
av_log(ctx, AV_LOG_WARNING,
|
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++)
|
for (i = 0; i < nb_ch; i++)
|
||||||
am->route[i] = i;
|
am->route[i] = i;
|
||||||
outlayout = av_get_default_channel_layout(nb_ch);
|
outlayout = av_get_default_channel_layout(nb_ch);
|
||||||
|
Loading…
Reference in New Issue
Block a user