[FFmpeg-devel] [PATCH] avfilter: remove useless cast

mypopy at gmail.com mypopy at gmail.com
Mon Oct 28 05:18:04 EET 2019


On Mon, Oct 28, 2019 at 12:03 AM Zhao Zhili <quinkblack at foxmail.com> wrote:
>
> ---
>  libavfilter/allfilters.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
> index d136734338..6156066028 100644
> --- a/libavfilter/allfilters.c
> +++ b/libavfilter/allfilters.c
> @@ -503,7 +503,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;
>  }
> --
> 2.21.0
LGTM


More information about the ffmpeg-devel mailing list