Browse code

Fix and extend documentation for avfilter_graph_get_filter().

Originally committed as revision 16354 to svn://svn.ffmpeg.org/ffmpeg/trunk

Stefano Sabatini authored on 2008/12/27 07:25:47
Showing 1 changed files
... ...
@@ -30,7 +30,10 @@ typedef struct AVFilterGraph {
30 30
 } AVFilterGraph;
31 31
 
32 32
 /**
33
- * Get a pointer to a graph by instance name
33
+ * Get from \p graph a filter instance with name \p name.
34
+ *
35
+ * @return the pointer to the found filter instance or NULL if it
36
+ * cannot be found.
34 37
  */
35 38
 AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
36 39