summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-12 01:55:59 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-12 13:56:03 +0200
commit0acf7e268b2f873379cd854b4d5aaba6f9c1f0b5 (patch)
tree99d22ceed57edd5407214fc26553ee0c7d1a69ce /libavfilter/avfiltergraph.c
parent3fc7b47145da424b1908e1a86bc4e3b982be67f4 (diff)
avfilter: remove opaque passing hacks
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 3e1d5ef467..582a87023d 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -119,7 +119,7 @@ int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
if (!*filt_ctx)
return AVERROR(ENOMEM);
- ret = avfilter_init_filter(*filt_ctx, args, opaque);
+ ret = avfilter_init_str(*filt_ctx, args);
if (ret < 0)
goto fail;