mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/af_amerge: Replace the number by macro for bprint init
Replace the number by macro for bprint init. Signed-off-by: Jun Zhao <mypopydev@gmail.com>
This commit is contained in:
parent
e4d14b046e
commit
9809ac98bd
@ -166,7 +166,7 @@ static int config_output(AVFilterLink *outlink)
|
||||
outlink->sample_rate = ctx->inputs[0]->sample_rate;
|
||||
outlink->time_base = ctx->inputs[0]->time_base;
|
||||
|
||||
av_bprint_init(&bp, 0, 1);
|
||||
av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);
|
||||
for (i = 0; i < s->nb_inputs; i++) {
|
||||
av_bprintf(&bp, "%sin%d:", i ? " + " : "", i);
|
||||
av_bprint_channel_layout(&bp, -1, ctx->inputs[i]->channel_layout);
|
||||
|
Loading…
Reference in New Issue
Block a user