summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-05-14 18:13:17 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-05-14 18:13:17 +0000
commitc5c6f6266886dca3c7ac8d9ab34e77d1a6ec1a8c (patch)
tree398c601a13cb8268f2b04b8462a114411a8f2af1 /libavfilter/avfiltergraph.h
parent83993c1c76319bc98b2666a8c68d5c51264f938e (diff)
Apply documentation fixes: use third person, fix grammar and remove
inconsistent '\p'. Originally committed as revision 18823 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r--libavfilter/avfiltergraph.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h
index fcc53ba018..fdae73c564 100644
--- a/libavfilter/avfiltergraph.h
+++ b/libavfilter/avfiltergraph.h
@@ -32,7 +32,7 @@ typedef struct AVFilterGraph {
} AVFilterGraph;
/**
- * Get from \p graph a filter instance with name \p name.
+ * Gets a filter instance with name name from graph.
*
* @return the pointer to the found filter instance or NULL if it
* cannot be found.
@@ -40,14 +40,14 @@ typedef struct AVFilterGraph {
AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
/**
- * Add an existing filter instance to a filter graph.
+ * Adds an existing filter instance to a filter graph.
* @param graph The filter graph
* @param filter The filter to be added
*/
int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
/**
- * Check for the validity of \p graph.
+ * Checks for the validity of graph.
*
* A graph is considered valid if all its input and output pads are
* connected.
@@ -57,12 +57,12 @@ int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
int avfilter_graph_check_validity(AVFilterGraph *graphctx, AVClass *log_ctx);
/**
- * Configure the formats of all the links in the graph.
+ * Configures the formats of all the links in the graph.
*/
int avfilter_graph_config_formats(AVFilterGraph *graphctx);
/**
- * Free a graph and destroy its links.
+ * Frees a graph and destroys its links.
*/
void avfilter_graph_destroy(AVFilterGraph *graph);