Commit 9864142b authored by Stefano Sabatini's avatar Stefano Sabatini

Fix and extend documentation for avfilter_graph_get_filter().

Originally committed as revision 16354 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e916c2ac
......@@ -30,7 +30,10 @@ typedef struct AVFilterGraph {
} AVFilterGraph;
/**
* Get a pointer to a graph by instance name
* Get from \p graph a filter instance with name \p name.
*
* @return the pointer to the found filter instance or NULL if it
* cannot be found.
*/
AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment