[vlc-devel] [PATCH] ci_filters: fix pointer used for src converter

Thomas Guillem thomas at gllm.fr
Thu Oct 15 10:27:06 CEST 2020


LGTM

On Thu, Oct 15, 2020, at 08:24, Steve Lhomme wrote:
> ---
>  modules/video_filter/ci_filters.m | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/modules/video_filter/ci_filters.m 
> b/modules/video_filter/ci_filters.m
> index 162937b6bda..e712ad6ac39 100644
> --- a/modules/video_filter/ci_filters.m
> +++ b/modules/video_filter/ci_filters.m
> @@ -377,7 +377,7 @@ Filter(filter_t *filter, picture_t *src)
>      if (ctx->src_converter)
>      {
>          // TODO
> -        src = 
> ctx->dst_converter->ops->filter_video(ctx->src_converter, src);
> +        src = 
> ctx->src_converter->ops->filter_video(ctx->src_converter, src);
>          if (!src)
>              return NULL;
>      }
> -- 
> 2.26.2
> 
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel


More information about the vlc-devel mailing list