summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavfilter/vf_gblur.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libavfilter/vf_gblur.c b/libavfilter/vf_gblur.c
index b88a9a6d26..8bb851a774 100644
--- a/libavfilter/vf_gblur.c
+++ b/libavfilter/vf_gblur.c
@@ -280,17 +280,15 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
width * sizeof(float), height);
} else if (s->depth == 8) {
for (y = 0; y < height; y++) {
- for (x = 0; x < width; x++) {
- dst[x] = bptr[x];
- }
+ for (x = 0; x < width; x++)
+ dst[x] = lrintf(bptr[x]);
bptr += width;
dst += out->linesize[plane];
}
} else {
for (y = 0; y < height; y++) {
- for (x = 0; x < width; x++) {
- dst16[x] = bptr[x];
- }
+ for (x = 0; x < width; x++)
+ dst16[x] = lrintf(bptr[x]);
bptr += width;
dst16 += out->linesize[plane] / 2;
}