diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-11 10:32:13 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-11 18:58:19 +0200 |
commit | 30151944488f7b008187365c11ac043e0ba3db7d (patch) | |
tree | 623199517be8ea17b9cc995ad8ec11e45f1dedb7 | |
parent | bbae8cdf4db52300d3c2f1f9637d3fd10fb3a7b0 (diff) | |
download | ffmpeg-30151944488f7b008187365c11ac043e0ba3db7d.tar.gz |
lavfi/amerge: clarify the error message in case of input overlap
-rw-r--r-- | libavfilter/af_amerge.c | 3 |
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); |