summaryrefslogtreecommitdiff
path: root/libavfilter/af_amerge.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-09-11 10:32:13 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-09-11 18:58:19 +0200
commit30151944488f7b008187365c11ac043e0ba3db7d (patch)
tree623199517be8ea17b9cc995ad8ec11e45f1dedb7 /libavfilter/af_amerge.c
parentbbae8cdf4db52300d3c2f1f9637d3fd10fb3a7b0 (diff)
lavfi/amerge: clarify the error message in case of input overlap
Diffstat (limited to 'libavfilter/af_amerge.c')
-rw-r--r--libavfilter/af_amerge.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c
index db3539d7ff..77ea297cd1 100644
--- a/libavfilter/af_amerge.c
+++ b/libavfilter/af_amerge.c
@@ -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);