Commit 320eb855 authored by vitor's avatar vitor

Spelling and puctuation

Commited in SoC by Vitor Sessak on 2008-02-16 17:52:49


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12726 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 32dc37d1
...@@ -488,7 +488,7 @@ int avfilter_graph_config_formats(AVFilterContext *graphctx) ...@@ -488,7 +488,7 @@ int avfilter_graph_config_formats(AVFilterContext *graphctx)
return -1; return -1;
/* Once everything is merged, it's possible that we'll still have /* 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); pick_formats(graph);
return 0; return 0;
......
...@@ -109,14 +109,14 @@ int avfilter_graph_parse_desc(AVFilterGraphDesc **desc, ...@@ -109,14 +109,14 @@ int avfilter_graph_parse_desc(AVFilterGraphDesc **desc,
char *line); char *line);
/** /**
* Load a filter graph description from a file * Load a filter graph description from a file.
* @param filename Name of the file from which to load the description * @param filename Name of the file from which to load the description.
* @return Pointer to the description on success. NULL on failure * @return Pointer to the description on success, NULL on failure.
*/ */
AVFilterGraphDesc *avfilter_graph_load_desc(const char *filename); 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 * @param desc The graph description to free
*/ */
void avfilter_graph_free_desc(AVFilterGraphDesc *desc); void avfilter_graph_free_desc(AVFilterGraphDesc *desc);
...@@ -129,12 +129,12 @@ void avfilter_graph_free_desc(AVFilterGraphDesc *desc); ...@@ -129,12 +129,12 @@ void avfilter_graph_free_desc(AVFilterGraphDesc *desc);
void avfilter_graph_add_filter(AVFilterContext *graphctx, AVFilterContext *filter); 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); 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); int avfilter_graph_config_links(AVFilterContext *graphctx);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment