diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-04 20:26:45 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-04 20:26:45 +0000 |
commit | a6fdd5748fa015eaaf085695fc59240b6d0b9a7d (patch) | |
tree | 65efa087701bf5d2973f5388be5d4a9766759946 | |
parent | 37e9cc4ec760b997ec075a9b2afe340ad2a8059c (diff) | |
download | ffmpeg-a6fdd5748fa015eaaf085695fc59240b6d0b9a7d.tar.gz |
Amend avfilter_graph_parse() documentation for the return code, make
it more generic.
Originally committed as revision 25672 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/graphparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index 510b4b3357..64fa0193af 100644 --- a/libavfilter/graphparser.h +++ b/libavfilter/graphparser.h @@ -43,7 +43,7 @@ typedef struct AVFilterInOut { * @param filters string to be parsed * @param inputs linked list to the inputs of the graph * @param outputs linked list to the outputs of the graph - * @return zero on success, -1 on error + * @return zero on success, a negative AVERROR code on error */ int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *inputs, AVFilterInOut *outputs, |