Browse Source

lavfi: remove disabled FF_API_DEFAULT_CONFIG_OUTPUT_LINK cruft

tags/n1.0
Anton Khirnov 13 years ago
parent
commit
5e88b96f37
3 changed files with 0 additions and 15 deletions
  1. +0
    -6
      libavfilter/avfilter.c
  2. +0
    -6
      libavfilter/avfilter.h
  3. +0
    -3
      libavfilter/version.h

+ 0
- 6
libavfilter/avfilter.c View File

@@ -443,12 +443,6 @@ enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx)
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
void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
AVFilterPad **pads, AVFilterLink ***links,


+ 0
- 6
libavfilter/avfilter.h View File

@@ -409,12 +409,6 @@ void avfilter_default_draw_slice(AVFilterLink *link, int y, int h, int slice_dir
attribute_deprecated
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 */
attribute_deprecated
AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link,


+ 0
- 3
libavfilter/version.h View File

@@ -44,9 +44,6 @@
* Those FF_API_* defines are not part of public API.
* 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
#define FF_API_FILTERS_PUBLIC (LIBAVFILTER_VERSION_MAJOR < 3)
#endif


Loading…
Cancel
Save