avfilter: fix 2 warnings about discarding const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
33ff943f70
commit
e4723a82f7
@ -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)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user