summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-02-09 22:01:26 +0100
committerAnton Khirnov <anton@khirnov.net>2016-02-12 10:18:13 +0100
commitfb25d99b0a5e21fb8cc184c7a9d3736387778266 (patch)
treea6a64727a81efa80cc6a62583536a3d0357fe649 /libavfilter
parentf7d77b9a5dd42bf0f5dffecf590466b4c4239437 (diff)
buffersrc: do not discard the error from ff_filter_frame()
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/buffersrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c
index f5b852f8cf..0079f51ae1 100644
--- a/libavfilter/buffersrc.c
+++ b/libavfilter/buffersrc.c
@@ -327,7 +327,7 @@ static int request_frame(AVFilterLink *link)
}
av_fifo_generic_read(c->fifo, &frame, sizeof(frame), NULL);
- ff_filter_frame(link, frame);
+ ret = ff_filter_frame(link, frame);
return ret;
}