summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-05 09:21:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-05 09:22:18 +0200
commit46b3dbf9ca1b65d909a27e01c7b6742d41688ce2 (patch)
treeff1d488dbed02d8cfa72606821a3cfa3374f3926 /libavfilter/avfiltergraph.c
parentc4f9a4cd2f6ba5447b2f9bcf734c394b1dbe6f9d (diff)
parent77cc958f60f73963be4281d6e82ef81707e40c26 (diff)
Merge commit '77cc958f60f73963be4281d6e82ef81707e40c26'
* commit '77cc958f60f73963be4281d6e82ef81707e40c26': lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter() Merged-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 52edb6b270..fb78a87de3 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -148,7 +148,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
#endif
-int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
+int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt,
const char *name, const char *args, void *opaque,
AVFilterGraph *graph_ctx)
{