mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
avfilter/vf_atadenoise: Check for ff_get_video_buffer() failure
Fixes CID1322338 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c97ea011f5
commit
d5710411c7
@ -302,6 +302,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
|
||||
if (s->q.available != s->size) {
|
||||
if (s->q.available < s->mid) {
|
||||
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
|
||||
if (!out)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
for (i = 0; i < s->mid; i++)
|
||||
ff_bufqueue_add(ctx, &s->q, av_frame_clone(out));
|
||||
av_frame_free(&out);
|
||||
|
Loading…
Reference in New Issue
Block a user