Commit 1dd1394d authored by stefano's avatar stefano

Fix and extend documentation for avfilter_graph_get_filter().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16354 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5dda7da9
...@@ -30,7 +30,10 @@ typedef struct AVFilterGraph { ...@@ -30,7 +30,10 @@ typedef struct AVFilterGraph {
} 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); 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