diff --git a/libavfilter/vsrc_buffer.c b/libavfilter/vsrc_buffer.c index d1e6ffd57a..9ba7d4ee47 100644 --- a/libavfilter/vsrc_buffer.c +++ b/libavfilter/vsrc_buffer.c @@ -111,15 +111,16 @@ int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_filter, AVFilter int av_vsrc_buffer_add_frame(AVFilterContext *buffer_src, const AVFrame *frame) { + int ret; AVFilterBufferRef *picref = avfilter_get_video_buffer_ref_from_frame(frame, AV_PERM_WRITE); if (!picref) return AVERROR(ENOMEM); - av_vsrc_buffer_add_video_buffer_ref(buffer_src, picref); + ret = av_vsrc_buffer_add_video_buffer_ref(buffer_src, picref); picref->buf->data[0] = NULL; avfilter_unref_buffer(picref); - return 0; + return ret; } #endif