summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavfilter/vf_bilateral.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_bilateral.c b/libavfilter/vf_bilateral.c
index 47959afdad..3025b49ae5 100644
--- a/libavfilter/vf_bilateral.c
+++ b/libavfilter/vf_bilateral.c
@@ -277,8 +277,8 @@ static void bilateral_##name(BilateralContext *s, const uint8_t *ssrc, uint8_t *
factor_++; \
} \
\
- memcpy(ypy, ycy, sizeof(float) * width); \
- memcpy(ypf, ycf, sizeof(float) * width); \
+ ypy = ycy; \
+ ypf = ycf; \
} \
\
for (int i = 0; i < height; i++) \