diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-19 10:37:56 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-22 21:36:23 +0200 |
commit | c04c533f62b80e9d6bbcb89946bab6206a8873c5 (patch) | |
tree | 46f7a477b17e2f9e56406ae844e963fd5657cbf5 /libavfilter/video.h | |
parent | 43c7a01e9879640859d32b062ac01700e1333c7a (diff) | |
download | ffmpeg-c04c533f62b80e9d6bbcb89946bab6206a8873c5.tar.gz |
lavfi: remove avfilter_null_* from public API on next bump.
Those functions are only useful inside filters. It is better to not
support user filters until the API is more stable.
Diffstat (limited to 'libavfilter/video.h')
-rw-r--r-- | libavfilter/video.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/video.h b/libavfilter/video.h index 99f84ecde8..f20f30b27c 100644 --- a/libavfilter/video.h +++ b/libavfilter/video.h @@ -21,4 +21,10 @@ AVFilterBufferRef *ff_default_get_video_buffer(AVFilterLink *link, int perms, int w, int h); +AVFilterBufferRef *ff_null_get_video_buffer(AVFilterLink *link, int perms, int w, int h); + +void ff_null_start_frame(AVFilterLink *link, AVFilterBufferRef *picref); +void ff_null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir); +void ff_null_end_frame(AVFilterLink *link); + #endif /* AVFILTER_VIDEO_H */ |