[FFmpeg-devel] [PATCH 4/4] avfilter/vf_geq: fix interpolation with 1 pixel width/height

Michael Niedermayer michael at niedermayer.cc
Sat May 11 04:57:00 EEST 2024


On Thu, May 09, 2024 at 08:49:18AM +0200, Marton Balint wrote:
> Fixes ticket #9740.
> 
> Signed-off-by: Marton Balint <cus at passwd.hu>
> ---
>  libavfilter/vf_geq.c | 20 ++++++++++++--------
>  1 file changed, 12 insertions(+), 8 deletions(-)
> 
> diff --git a/libavfilter/vf_geq.c b/libavfilter/vf_geq.c
> index dbe50e5250..12604d44a2 100644
> --- a/libavfilter/vf_geq.c
> +++ b/libavfilter/vf_geq.c
> @@ -112,8 +112,12 @@ static inline double getpix(void *priv, double x, double y, int plane)
>          return 0;
>  
>      if (geq->interpolation == INTERP_BILINEAR) {
> -        xi = x = av_clipd(x, 0, w - 2);
> -        yi = y = av_clipd(y, 0, h - 2);
> +        int xn, yn;
> +
> +        xi = x = av_clipd(x, 0, w - 1);
> +        yi = y = av_clipd(y, 0, h - 1);
> +        xn = av_clip(xi + 1, 0, w - 1);
> +        yn = av_clip(yi + 1, 0, h - 1);

xi + 1 should not need cliping, a FFMIN() should be enough

thx

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

If you think the mosad wants you dead since a long time then you are either
wrong or dead since a long time.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20240511/90f9d521/attachment.sig>


More information about the ffmpeg-devel mailing list