[FFmpeg-soc] [soc]: r1920 - in libavfilter: avfiltergraph.c avfiltergraph.h
vitor
subversion at mplayerhq.hu
Sat Feb 16 18:52:50 CET 2008
Author: vitor
Date: Sat Feb 16 18:52:49 2008
New Revision: 1920
Log:
Spelling and puctuation
Modified:
libavfilter/avfiltergraph.c
libavfilter/avfiltergraph.h
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Sat Feb 16 18:52:49 2008
@@ -488,7 +488,7 @@ int avfilter_graph_config_formats(AVFilt
return -1;
/* Once everything is merged, it's possible that we'll still have
- * multiple valid choices of colorspace. We pick the first one. */
+ * multiple valid colorspace choices. We pick the first one. */
pick_formats(graph);
return 0;
Modified: libavfilter/avfiltergraph.h
==============================================================================
--- libavfilter/avfiltergraph.h (original)
+++ libavfilter/avfiltergraph.h Sat Feb 16 18:52:49 2008
@@ -109,14 +109,14 @@ int avfilter_graph_parse_desc(AVFilterGr
char *line);
/**
- * Load a filter graph description from a file
- * @param filename Name of the file from which to load the description
- * @return Pointer to the description on success. NULL on failure
+ * Load a filter graph description from a file.
+ * @param filename Name of the file from which to load the description.
+ * @return Pointer to the description on success, NULL on failure.
*/
AVFilterGraphDesc *avfilter_graph_load_desc(const char *filename);
/**
- * Free a filter graph description
+ * Free a filter graph description.
* @param desc The graph description to free
*/
void avfilter_graph_free_desc(AVFilterGraphDesc *desc);
@@ -129,12 +129,12 @@ void avfilter_graph_free_desc(AVFilterGr
void avfilter_graph_add_filter(AVFilterContext *graphctx, AVFilterContext *filter);
/**
- * Configure the formats of all the links in the graph
+ * Configure the formats of all the links in the graph.
*/
int avfilter_graph_config_formats(AVFilterContext *graphctx);
/**
- * Configure the resolution, etc of all links in the graph
+ * Configure the parameters (resolution, etc) of all links in the graph.
*/
int avfilter_graph_config_links(AVFilterContext *graphctx);
More information about the FFmpeg-soc
mailing list