summaryrefslogtreecommitdiff
path: root/libavfilter/vf_fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_fifo.c')
-rw-r--r--libavfilter/vf_fifo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_fifo.c b/libavfilter/vf_fifo.c
index 06018116ed..91e4b9d111 100644
--- a/libavfilter/vf_fifo.c
+++ b/libavfilter/vf_fifo.c
@@ -24,6 +24,7 @@
*/
#include "avfilter.h"
+#include "video.h"
typedef struct BufPic {
AVFilterBufferRef *picref;
@@ -106,7 +107,7 @@ AVFilter avfilter_vf_fifo = {
.inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
- .get_video_buffer= avfilter_null_get_video_buffer,
+ .get_video_buffer= ff_null_get_video_buffer,
.start_frame = start_frame,
.draw_slice = draw_slice,
.end_frame = end_frame,