@@ -443,12 +443,6 @@ enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx) | |||||
return pads[pad_idx].type; | return pads[pad_idx].type; | ||||
} | } | ||||
#if FF_API_DEFAULT_CONFIG_OUTPUT_LINK | |||||
int avfilter_default_config_output_link(AVFilterLink *link) | |||||
{ | |||||
return 0; | |||||
} | |||||
#endif | |||||
#if FF_API_FILTERS_PUBLIC | #if FF_API_FILTERS_PUBLIC | ||||
void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off, | void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off, | ||||
AVFilterPad **pads, AVFilterLink ***links, | AVFilterPad **pads, AVFilterLink ***links, | ||||
@@ -409,12 +409,6 @@ void avfilter_default_draw_slice(AVFilterLink *link, int y, int h, int slice_dir | |||||
attribute_deprecated | attribute_deprecated | ||||
void avfilter_default_end_frame(AVFilterLink *link); | void avfilter_default_end_frame(AVFilterLink *link); | ||||
#if FF_API_DEFAULT_CONFIG_OUTPUT_LINK | |||||
/** default handler for config_props() for audio/video outputs */ | |||||
attribute_deprecated | |||||
int avfilter_default_config_output_link(AVFilterLink *link); | |||||
#endif | |||||
/** default handler for get_video_buffer() for video inputs */ | /** default handler for get_video_buffer() for video inputs */ | ||||
attribute_deprecated | attribute_deprecated | ||||
AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, | AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, | ||||
@@ -44,9 +44,6 @@ | |||||
* Those FF_API_* defines are not part of public API. | * Those FF_API_* defines are not part of public API. | ||||
* They may change, break or disappear at any time. | * They may change, break or disappear at any time. | ||||
*/ | */ | ||||
#ifndef FF_API_DEFAULT_CONFIG_OUTPUT_LINK | |||||
#define FF_API_DEFAULT_CONFIG_OUTPUT_LINK (LIBAVFILTER_VERSION_MAJOR < 3) | |||||
#endif | |||||
#ifndef FF_API_FILTERS_PUBLIC | #ifndef FF_API_FILTERS_PUBLIC | ||||
#define FF_API_FILTERS_PUBLIC (LIBAVFILTER_VERSION_MAJOR < 3) | #define FF_API_FILTERS_PUBLIC (LIBAVFILTER_VERSION_MAJOR < 3) | ||||
#endif | #endif | ||||