Commit 91d2efa7 authored by Anton Khirnov's avatar Anton Khirnov

lavfi: add const to AVFilterContext.filter.

lavfi should never modify the filter through that pointer.
parent f223ad1e
......@@ -439,7 +439,7 @@ typedef struct AVFilter {
struct AVFilterContext {
const AVClass *av_class; ///< needed for av_log()
AVFilter *filter; ///< the AVFilter of which this is an instance
const AVFilter *filter; ///< the AVFilter of which this is an instance
char *name; ///< name of this filter instance
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment