Browse code

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

Stefano Sabatini authored on 2012/09/11 17:32:13
Showing 1 changed files
... ...
@@ -102,7 +102,8 @@ static int query_formats(AVFilterContext *ctx)
102 102
     }
103 103
     if (overlap) {
104 104
         av_log(ctx, AV_LOG_WARNING,
105
-               "Inputs overlap: output layout will be meaningless\n");
105
+               "Input channel layouts overlap: "
106
+               "output layout will be determined by the number of distinct input channels\n");
106 107
         for (i = 0; i < nb_ch; i++)
107 108
             am->route[i] = i;
108 109
         outlayout = av_get_default_channel_layout(nb_ch);