Commit 5dda7da9 authored by stefano's avatar stefano

Fix typo: ommitted -> omitted.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16353 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a1b13f0c
......@@ -351,7 +351,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
goto fail;
if(filter->input_count == 1 && !currInputs && !index) {
/* First input can be ommitted if it is "[in]" */
/* First input can be omitted if it is "[in]" */
const char *tmp = "[in]";
if(parse_inputs(&tmp, &currInputs, &openOutputs, log_ctx) < 0)
goto fail;
......@@ -377,7 +377,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
} while(chr == ',' || chr == ';');
if(openInputs && !strcmp(openInputs->name, "out") && currInputs) {
/* Last output can be ommitted if it is "[out]" */
/* Last output can be omitted if it is "[out]" */
const char *tmp = "[out]";
if(parse_outputs(&tmp, &currInputs, &openInputs,
&openOutputs, log_ctx) < 0)
......
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