diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2015-01-27 13:21:56 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2015-01-29 10:12:34 +0100 |
commit | af7b89e08be8c4b39fd70ef59f50c5940f0dd187 (patch) | |
tree | f3ba99771cf0fe95ccd54808f456f734e716bf90 /libavfilter | |
parent | d11fcf735f4ae916789d45b85a5da783f207f7ec (diff) | |
download | ffmpeg-af7b89e08be8c4b39fd70ef59f50c5940f0dd187.tar.gz |
lavfi: document assumptions about the input and output labels of a filter graph description
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index b5220b96d9..d296536151 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -1419,6 +1419,10 @@ int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, /** * Add a graph described by a string to a graph. * + * In the graph filters description, if the input label of the first + * filter is not specified, "in" is assumed; if the output label of + * the last filter is not specified, "out" is assumed. + * * @param graph the filter graph where to link the parsed graph context * @param filters string to be parsed * @param inputs pointer to a linked list to the inputs of the graph, may be NULL. |