Browse Source

avfilter/vf_geq: Use av_clipd() instead of av_clipf()

With floats we cannot represent all 32bit integer dimensions

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit c8813b1a98)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.0.5
Michael Niedermayer 5 years ago
parent
commit
d8658b51b7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_geq.c

+ 2
- 2
libavfilter/vf_geq.c View File

@@ -88,8 +88,8 @@ static inline double getpix(void *priv, double x, double y, int plane)
if (!src) if (!src)
return 0; return 0;


xi = x = av_clipf(x, 0, w - 2);
yi = y = av_clipf(y, 0, h - 2);
xi = x = av_clipd(x, 0, w - 2);
yi = y = av_clipd(y, 0, h - 2);


x -= xi; x -= xi;
y -= yi; y -= yi;


Loading…
Cancel
Save