summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorLukasz Marek <lukasz.m.luki2@gmail.com>2014-04-25 00:26:49 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-26 02:16:56 +0200
commitb217dc91bfd5243492227fe40fd3caa01d8b0414 (patch)
tree016b93328182c19d2bb2dd5def8416d486694b7f /libavfilter/avfilter.h
parent3ba77ea369a059b5939f7e4b2466a1b4b526edbd (diff)
lavfi/avfilter: clarify avfilter_graph_get_filter() doxygen
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 9579c79ca8..b5220b96d9 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -1267,8 +1267,10 @@ AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
const char *name);
/**
- * Get a filter instance with name name from graph.
+ * Get a filter instance identified by instance name from graph.
*
+ * @param graph filter graph to search through.
+ * @param name filter instance name (should be unique in the graph).
* @return the pointer to the found filter instance or NULL if it
* cannot be found.
*/