summaryrefslogtreecommitdiff
path: root/libavfilter/vf_tile.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_tile.c')
-rw-r--r--libavfilter/vf_tile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/vf_tile.c b/libavfilter/vf_tile.c
index e6971de9ee..83ee45dda0 100644
--- a/libavfilter/vf_tile.c
+++ b/libavfilter/vf_tile.c
@@ -28,6 +28,7 @@
#include "drawutils.h"
#include "formats.h"
#include "video.h"
+#include "internal.h"
typedef struct {
unsigned w, h;
@@ -170,7 +171,7 @@ static int request_frame(AVFilterLink *outlink)
int r;
while (1) {
- r = avfilter_request_frame(inlink);
+ r = ff_request_frame(inlink);
if (r < 0) {
if (r == AVERROR_EOF && tile->current)
end_last_frame(ctx);