summaryrefslogtreecommitdiff
path: root/libavfilter/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/video.h')
-rw-r--r--libavfilter/video.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/video.h b/libavfilter/video.h
index c677f30047..4208944465 100644
--- a/libavfilter/video.h
+++ b/libavfilter/video.h
@@ -43,9 +43,6 @@ AVFilterBufferRef *ff_get_video_buffer(AVFilterLink *link, int perms,
int w, int h);
int ff_inplace_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
-int ff_null_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
-int ff_null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir);
-int ff_null_end_frame(AVFilterLink *link);
/**
* Notify the next filter of the start of a frame.
@@ -62,11 +59,6 @@ int ff_null_end_frame(AVFilterLink *link);
int ff_start_frame(AVFilterLink *link, AVFilterBufferRef *picref);
/**
- * Pass video frame along and keep an internal reference for later use.
- */
-int ff_null_start_frame_keep_ref(AVFilterLink *inlink, AVFilterBufferRef *picref);
-
-/**
* Notify the next filter that the current frame has finished.
*
* @param link the output link the frame was sent over