提交 1b539fbf 编写于 作者: M Michael Niedermayer

avfilter/avf_showcqt: Fix uninitialized return code

Fixes CID1322329
Signed-off-by: NMichael Niedermayer <michael@niedermayer.cc>
上级 4819446e
......@@ -993,7 +993,7 @@ static int plot_cqt(AVFilterContext *ctx)
{
AVFilterLink *outlink = ctx->outputs[0];
ShowCQTContext *s = ctx->priv;
int ret;
int ret = 0;
memcpy(s->fft_result, s->fft_data, s->fft_len * sizeof(*s->fft_data));
av_fft_permute(s->fft_ctx, s->fft_result);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册