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/avfilter.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/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 0d40b7664c..54adc5cf3a 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -487,18 +487,24 @@ int avfilter_default_query_formats(AVFilterContext *ctx); */ void avfilter_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats); +#if FF_API_FILTERS_PUBLIC /** start_frame() handler for filters which simply pass video along */ +attribute_deprecated void avfilter_null_start_frame(AVFilterLink *link, AVFilterBufferRef *picref); /** draw_slice() handler for filters which simply pass video along */ +attribute_deprecated void avfilter_null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir); /** end_frame() handler for filters which simply pass video along */ +attribute_deprecated void avfilter_null_end_frame(AVFilterLink *link); /** get_video_buffer() handler for filters which simply pass video along */ +attribute_deprecated AVFilterBufferRef *avfilter_null_get_video_buffer(AVFilterLink *link, int perms, int w, int h); +#endif /** * Filter definition. This defines the pads a filter contains, and all the |