mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-23 23:36:57 +00:00
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>
This commit is contained in:
parent
e6431d2c2c
commit
1af067b06f
@ -81,8 +81,8 @@ static inline double getpix(void *priv, double x, double y, int plane)
|
||||
if (!src)
|
||||
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;
|
||||
y -= yi;
|
||||
|
Loading…
Reference in New Issue
Block a user