diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-26 20:26:44 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-26 20:26:44 +0000 |
commit | e916c2ac6addc5daa8dd8841c871683126ccdf0d (patch) | |
tree | ad0f0073d093dfe4f354b60909674b868f4ddbcf | |
parent | f23740d96f98f9547a2780bc14840afb58f75b65 (diff) | |
download | ffmpeg-e916c2ac6addc5daa8dd8841c871683126ccdf0d.tar.gz |
Fix typo: ommitted -> omitted.
Originally committed as revision 16353 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/graphparser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index f14149fd72..34c44344e6 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -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) |