mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 08:46:47 +08:00
Remove duplicate kernel assignment from scale_uv.cc
The assignment of ScaleUVRowDown2Box_NEON is already done in the block immediately below this one, so just remove this code. Change-Id: I83c0f18dbe66e908cd4fbce73e20e96a137860cf Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/5979723 Reviewed-by: Frank Barchard <fbarchard@chromium.org>
This commit is contained in:
parent
f00c43f4d6
commit
b0f72309c6
@ -104,14 +104,6 @@ static void ScaleUVDown2(int src_width,
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#if defined(HAS_SCALEUVROWDOWN2BOX_NEON)
|
||||
if (TestCpuFlag(kCpuHasNEON) && filtering) {
|
||||
ScaleUVRowDown2 = ScaleUVRowDown2Box_Any_NEON;
|
||||
if (IS_ALIGNED(dst_width, 8)) {
|
||||
ScaleUVRowDown2 = ScaleUVRowDown2Box_NEON;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#if defined(HAS_SCALEUVROWDOWN2_NEON)
|
||||
if (TestCpuFlag(kCpuHasNEON)) {
|
||||
ScaleUVRowDown2 =
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user