avfilter/vf_bilateral: remove useless memcpy

Signed-off-by: leozhang <leozhang@qiyi.com>
This commit is contained in:
leozhang 2019-10-30 11:07:12 +08:00 committed by Paul B Mahol
parent 241cdded0f
commit fe591393cd
1 changed files with 2 additions and 2 deletions

View File

@ -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++) \