diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:26 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:26 +0000 |
commit | 5cb9c725f2a556b62553bc1473d0861c0d7456d9 (patch) | |
tree | 05b425c321840672c1a77b00953639798c0cc6c3 /libavfilter/graphparser.h | |
parent | 3a70bb2d762100050787d51d93cdc6fb96a619ca (diff) | |
download | ffmpeg-5cb9c725f2a556b62553bc1473d0861c0d7456d9.tar.gz |
Simplify
Commited in SoC by Vitor Sessak on 2008-04-18 17:57:42
Originally committed as revision 13318 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.h')
-rw-r--r-- | libavfilter/graphparser.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index 278095e940..c255824e27 100644 --- a/libavfilter/graphparser.h +++ b/libavfilter/graphparser.h @@ -35,6 +35,9 @@ * @param outpad pad index of the output * @return zero on success, -1 on error */ -int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad); +int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, + AVFilterContext *in, int inpad, + AVFilterContext *out, int outpad, + AVClass *log_ctx); #endif /* FFMPEG_GRAPHPARSER_H */ |