Browse Source

avfilter/vf_bilateral: remove useless memcpy

Signed-off-by: leozhang <leozhang@qiyi.com>
tags/n4.4
leozhang Paul B Mahol 6 years ago
parent
commit
fe591393cd
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_bilateral.c

+ 2
- 2
libavfilter/vf_bilateral.c 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++) \


Loading…
Cancel
Save