[FFmpeg-devel] [PATCH] avfilter/vf_chromashift: Fix mixed declaration and code

Paul B Mahol onemda at gmail.com
Sun Nov 25 10:52:58 EET 2018


On 11/25/18, Mark Harris <mark.hsj at gmail.com> wrote:
> ---
>  libavfilter/vf_chromashift.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/libavfilter/vf_chromashift.c b/libavfilter/vf_chromashift.c
> index 068c3c1b68..d073256b99 100644
> --- a/libavfilter/vf_chromashift.c
> +++ b/libavfilter/vf_chromashift.c
> @@ -76,13 +76,14 @@ static int query_formats(AVFilterContext *ctx)
>          AV_PIX_FMT_NONE
>      };
>      const enum AVPixelFormat *pix_fmts;
> +    AVFilterFormats *fmts_list;
>
>      if (!strcmp(ctx->filter->name, "rgbashift"))
>          pix_fmts = rgb_pix_fmts;
>      else
>          pix_fmts = yuv_pix_fmts;
>
> -    AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
> +    fmts_list = ff_make_format_list(pix_fmts);
>      if (!fmts_list)
>          return AVERROR(ENOMEM);
>      return ff_set_common_formats(ctx, fmts_list);
> --
> 2.19.2
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>

lgtm


More information about the ffmpeg-devel mailing list