mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avfilter/vf_bilateral: remove useless memcpy
Signed-off-by: leozhang <leozhang@qiyi.com>
This commit is contained in:
parent
241cdded0f
commit
fe591393cd
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue