Commit e4723a82 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter: fix 2 warnings about discarding const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 33ff943f
...@@ -510,7 +510,7 @@ static void *filter_child_next(void *obj, void *prev) ...@@ -510,7 +510,7 @@ static void *filter_child_next(void *obj, void *prev)
static const AVClass *filter_child_class_next(const AVClass *prev) static const AVClass *filter_child_class_next(const AVClass *prev)
{ {
AVFilter *f = NULL; const AVFilter *f = NULL;
/* find the filter that corresponds to prev */ /* find the filter that corresponds to prev */
while (prev && (f = avfilter_next(f))) while (prev && (f = avfilter_next(f)))
......
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