mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 04:17:05 +00:00
avfilter: remove useless cast
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
86174197e6
commit
26f81e5e83
@ -528,7 +528,7 @@ const AVFilter *avfilter_get_by_name(const char *name)
|
|||||||
|
|
||||||
while ((f = av_filter_iterate(&opaque)))
|
while ((f = av_filter_iterate(&opaque)))
|
||||||
if (!strcmp(f->name, name))
|
if (!strcmp(f->name, name))
|
||||||
return (AVFilter *)f;
|
return f;
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user