diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-13 03:35:53 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-13 03:38:16 +0100 |
commit | db6e960450eb32674fdd10244a491f4d116ff67b (patch) | |
tree | 57a853ea13b0868fbc93325e683d8008096735ec /libavfilter/video.h | |
parent | 43912625e0103f79674a1f36cc4572204f94e9fc (diff) | |
download | ffmpeg-db6e960450eb32674fdd10244a491f4d116ff67b.tar.gz |
lavfi: drop ff_null_start_frame/end_frame/draw_slice.
The functions have become unused
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/video.h')
-rw-r--r-- | libavfilter/video.h | 8 |
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 |