diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-16 07:59:52 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-04 14:17:39 +0200 |
commit | 8eb9bf093381efdeeaaab4ebe73ca3c255325961 (patch) | |
tree | bafc54a77452628d9a7c750855b61834264c8d47 /libavfilter/internal.h | |
parent | 19dfbf1915a0739f1a8b2f5a56aa1d3ff0597d9c (diff) | |
download | ffmpeg-8eb9bf093381efdeeaaab4ebe73ca3c255325961.tar.gz |
avfiltergraph: make some functions static.
They are not used outside of avfiltergraph.c
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index a5b3f788da..4eb65305f9 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -25,29 +25,6 @@ */ #include "avfilter.h" -#include "avfiltergraph.h" - -/** - * Check for the validity of graph. - * - * A graph is considered valid if all its input and output pads are - * connected. - * - * @return 0 in case of success, a negative value otherwise - */ -int ff_avfilter_graph_check_validity(AVFilterGraph *graphctx, AVClass *log_ctx); - -/** - * Configure all the links of graphctx. - * - * @return 0 in case of success, a negative value otherwise - */ -int ff_avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx); - -/** - * Configure the formats of all the links in the graph. - */ -int ff_avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx); /** default handler for freeing audio/video buffer when there are no references left */ void ff_avfilter_default_free_buffer(AVFilterBuffer *buf); |