summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-09-07 11:21:06 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-09-09 10:57:28 +0200
commita4cb0af94582aa7598db95bba4bc92f1b349dfe3 (patch)
tree1b20533e55c14f8d24fc79b05cbf9dcef370eecf /libavfilter/avfilter.h
parente62e455f7b4c5b148f5a289ba823dcc71d6ca389 (diff)
lavfi: drop deprecated and pointless avfilter_default_end_frame() function
Fix warning when compiling boxblur. While this is technically a major API break, practically there will be no one using that function since the filtering API is mostly private, so that function alone is not usable.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 4750cfdec9..d66bc000be 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -410,10 +410,6 @@ const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx);
*/
enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx);
-/** default handler for end_frame() for video inputs */
-attribute_deprecated
-int avfilter_default_end_frame(AVFilterLink *link);
-
/**
* Filter definition. This defines the pads a filter contains, and all the
* callback functions used to interact with the filter.