Commit fe591393 authored by leozhang's avatar leozhang Committed by Paul B Mahol

avfilter/vf_bilateral: remove useless memcpy

Signed-off-by: 's avatarleozhang <leozhang@qiyi.com>
parent 241cdded
......@@ -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++) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment