Originally committed as revision 16354 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -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 |
|