diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:08:37 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:08:37 +0000 |
commit | b6be4acc1fbe78bf3708487465a7211bb1cfb280 (patch) | |
tree | 1c30b6b814daf01cee88ad4279f15e5ba16abe5f /libavfilter | |
parent | 789210fa22c12959f185547273eb5af55ecc90c6 (diff) | |
download | ffmpeg-b6be4acc1fbe78bf3708487465a7211bb1cfb280.tar.gz |
Remove declaration of non-existing functions
Commited in SoC by Vitor Sessak on 2008-03-24 19:11:27
Originally committed as revision 12730 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfiltergraph.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index c4718ca816..5fc60dcef1 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -87,8 +87,6 @@ typedef struct } AVFilterGraphDescParser; extern AVFilter avfilter_vf_graph; -extern AVFilter avfilter_vf_graphfile; -extern AVFilter avfilter_vf_graphdesc; /** * Parse a graph composed of a simple chain of filters which is described by @@ -98,27 +96,6 @@ extern AVFilter avfilter_vf_graphdesc; */ AVFilterGraphDesc *avfilter_graph_parse_chain(const char *filters); -/** Parse a line of a filter graph description. - * @param desc Pointer to an AVFilterGraphDesc pointer. If *desc is NULL, - * a new AVFilterGraphDesc structure will be created for you. - * Must be the same between multiple invocations when parsing - * the same description. - * @param parser Parser state. Must be the same between multiple invocations - * when parsing the same description - * @param line Line of the graph description to parse. - * @return Zero on success, negative on error. - */ -int avfilter_graph_parse_desc(AVFilterGraphDesc **desc, - AVFilterGraphDescParser **parser, - char *line); - -/** - * Load a filter graph description from a file. - * @param filename Name of the file from which to load the description. - * @return Pointer to the description on success, NULL on failure. - */ -AVFilterGraphDesc *avfilter_graph_load_desc(const char *filename); - /** * Free a filter graph description. * @param desc The graph description to free |