summaryrefslogtreecommitdiff
path: root/libavfilter/vf_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_null.c')
-rw-r--r--libavfilter/vf_null.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavfilter/vf_null.c b/libavfilter/vf_null.c
index 5718ee0c1d..b98f3efc64 100644
--- a/libavfilter/vf_null.c
+++ b/libavfilter/vf_null.c
@@ -22,6 +22,7 @@
*/
#include "avfilter.h"
+#include "video.h"
AVFilter avfilter_vf_null = {
.name = "null",
@@ -31,9 +32,9 @@ AVFilter avfilter_vf_null = {
.inputs = (const AVFilterPad[]) {{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
- .get_video_buffer = avfilter_null_get_video_buffer,
- .start_frame = avfilter_null_start_frame,
- .end_frame = avfilter_null_end_frame },
+ .get_video_buffer = ff_null_get_video_buffer,
+ .start_frame = ff_null_start_frame,
+ .end_frame = ff_null_end_frame },
{ .name = NULL}},
.outputs = (const AVFilterPad[]) {{ .name = "default",