mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_bilateral: properly round float result
This commit is contained in:
parent
4e4057e437
commit
cf0881bcfc
@ -284,7 +284,7 @@ static void bilateral_##name(BilateralContext *s, const uint8_t *ssrc, uint8_t *
|
||||
\
|
||||
for (int i = 0; i < height; i++) \
|
||||
for (int j = 0; j < width; j++) \
|
||||
dst[j + i * dst_linesize] = img_out_f[i * width + j]; \
|
||||
dst[j + i * dst_linesize] = lrintf(img_out_f[i * width + j]); \
|
||||
}
|
||||
|
||||
BILATERAL(uint8_t, byte)
|
||||
|
Loading…
Reference in New Issue
Block a user