mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_bilateral: remove useless memcpy
Signed-off-by: leozhang <leozhang@qiyi.com>
This commit is contained in:
parent
241cdded0f
commit
fe591393cd
@ -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…
Reference in New Issue
Block a user