summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.h
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-04-04 20:06:13 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-04-04 20:06:13 +0000
commit1ac87cc890128fb1276610f6b9f23cfb0746fe6a (patch)
treeae82e0b796e6d4683969c6e583100a02a56e5dd6 /libavfilter/avfiltergraph.h
parentfc27b8081ec79e58f3429a5d49e51fdc041f74ca (diff)
Allow code to pass data to filters it creates.
Commited in SoC by Bobby Bingham on 2007-07-15 16:45:50 Originally committed as revision 12692 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r--libavfilter/avfiltergraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h
index 942b10685a..c5a0641b39 100644
--- a/libavfilter/avfiltergraph.h
+++ b/libavfilter/avfiltergraph.h
@@ -55,6 +55,6 @@ void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter);
* @return 0 on success. -1 on error.
*/
int avfilter_graph_load_chain(AVFilterGraph *graph,
- unsigned count, char **filter_list,
+ unsigned count, char **filter_list, void **opaque,
AVFilterContext **first, AVFilterContext **last);
#endif /* FFMPEG_AVFILTER_H */