diff options
author | Mina Nagy Zaki <mnzaki@gmail.com> | 2011-08-04 15:47:00 +0300 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-22 21:32:57 +0200 |
commit | 88c3b87bd81829d1b7171cb26e5ef5a564dbd96a (patch) | |
tree | 5285cf29a2be26bf25dc7d10fa5187e4f677f93c /libavfilter/avfilter.h | |
parent | ccefa89f398a30dcd24044621ec7013387aeb455 (diff) | |
download | ffmpeg-88c3b87bd81829d1b7171cb26e5ef5a564dbd96a.tar.gz |
lavfi: deprecate default config_props() callback and refactor avfilter_config_links()
Link properties have to be checked after config_props() is called to
make sure everything is sane, so the default config_props() for output
links was redundant.
Remove now empty defaults.c
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 718f77df3d..711feca9e1 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -460,8 +460,11 @@ void avfilter_default_draw_slice(AVFilterLink *link, int y, int h, int slice_dir /** default handler for end_frame() for video inputs */ 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 */ AVFilterBufferRef *avfilter_default_get_video_buffer(AVFilterLink *link, |