summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 10:49:29 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-02 10:49:29 +0000
commit9a58234feaae8b387b7a7e41b643ec619534d26a (patch)
treeeaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavfilter
parent5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff)
Fix misspelled parameter names in Doxygen documentation.
This fixes one Doxygen warning each. Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avfilter.h2
-rw-r--r--libavfilter/avfiltergraph.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 7b473ad9b5..f8b765458d 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -190,7 +190,7 @@ struct AVFilterFormats
/**
* Create a list of supported formats. This is intended for use in
* AVFilter->query_formats().
- * @param pix_fmt list of pixel formats, terminated by PIX_FMT_NONE
+ * @param pix_fmts list of pixel formats, terminated by PIX_FMT_NONE
* @return the format list, with no existing references
*/
AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts);
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h
index 5a0bbf7ea7..23fc57c311 100644
--- a/libavfilter/avfiltergraph.h
+++ b/libavfilter/avfiltergraph.h
@@ -42,7 +42,7 @@ AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
/**
* Add an existing filter instance to a filter graph.
*
- * @param graph the filter graph
+ * @param graphctx the filter graph
* @param filter the filter to be added
*/
int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);