Commit 7851e2f3 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_join: use av_asprintf()

parent 6e9e14e6
......@@ -25,6 +25,7 @@
*/
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
......@@ -185,12 +186,10 @@ static av_cold int join_init(AVFilterContext *ctx)
return ret;
for (i = 0; i < s->inputs; i++) {
char name[32];
AVFilterPad pad = { 0 };
snprintf(name, sizeof(name), "input%d", i);
pad.type = AVMEDIA_TYPE_AUDIO;
pad.name = av_strdup(name);
pad.name = av_asprintf("input%d", i);
if (!pad.name)
return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment