avfilter: remove useless cast

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
pull/347/head
Zhao Zhili 5 years ago committed by Andreas Rheinhardt
parent 86174197e6
commit 26f81e5e83
  1. 2
      libavfilter/allfilters.c

@ -528,7 +528,7 @@ const AVFilter *avfilter_get_by_name(const char *name)
while ((f = av_filter_iterate(&opaque)))
if (!strcmp(f->name, name))
return (AVFilter *)f;
return f;
return NULL;
}

Loading…
Cancel
Save