Commit e95987f6 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_afftdn: fix memory leaks reported by coverity

parent 7070955d
...@@ -1163,15 +1163,13 @@ static int output_frame(AVFilterLink *inlink) ...@@ -1163,15 +1163,13 @@ static int output_frame(AVFilterLink *inlink)
ThreadData td; ThreadData td;
int ret = 0; int ret = 0;
if (!in) { in = ff_get_audio_buffer(outlink, s->window_length);
in = ff_get_audio_buffer(outlink, s->window_length); if (!in)
if (!in) return AVERROR(ENOMEM);
return AVERROR(ENOMEM);
}
ret = av_audio_fifo_peek(s->fifo, (void **)in->extended_data, s->window_length); ret = av_audio_fifo_peek(s->fifo, (void **)in->extended_data, s->window_length);
if (ret < 0) if (ret < 0)
return ret; goto end;
if (s->track_noise) { if (s->track_noise) {
for (int ch = 0; ch < inlink->channels; ch++) { for (int ch = 0; ch < inlink->channels; ch++) {
...@@ -1248,7 +1246,9 @@ static int output_frame(AVFilterLink *inlink) ...@@ -1248,7 +1246,9 @@ static int output_frame(AVFilterLink *inlink)
dst[m] = orig[m] - src[m]; dst[m] = orig[m] - src[m];
break; break;
default: default:
return AVERROR_BUG; av_frame_free(&out);
ret = AVERROR_BUG;
goto end;
} }
memmove(src, src + s->sample_advance, (s->window_length - s->sample_advance) * sizeof(*src)); memmove(src, src + s->sample_advance, (s->window_length - s->sample_advance) * sizeof(*src));
memset(src + (s->window_length - s->sample_advance), 0, s->sample_advance * sizeof(*src)); memset(src + (s->window_length - s->sample_advance), 0, s->sample_advance * sizeof(*src));
......
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