| Index: source/libvpx/vp9/encoder/arm/neon/vp9_quantize_neon.c
|
| diff --git a/source/libvpx/vp9/encoder/arm/neon/vp9_quantize_neon.c b/source/libvpx/vp9/encoder/arm/neon/vp9_quantize_neon.c
|
| index 9cf1e5e2c101957c0fa13d9a74c3ec05051a36db..47363c75ba52ee52e3d80d4e57c5a77d37a0b3da 100644
|
| --- a/source/libvpx/vp9/encoder/arm/neon/vp9_quantize_neon.c
|
| +++ b/source/libvpx/vp9/encoder/arm/neon/vp9_quantize_neon.c
|
| @@ -111,8 +111,8 @@ void vp9_quantize_fp_neon(const int16_t *coeff_ptr, intptr_t count,
|
| *eob_ptr = (uint16_t)vget_lane_s16(v_eobmax_final, 0);
|
| }
|
| } else {
|
| - vpx_memset(qcoeff_ptr, 0, count * sizeof(int16_t));
|
| - vpx_memset(dqcoeff_ptr, 0, count * sizeof(int16_t));
|
| + memset(qcoeff_ptr, 0, count * sizeof(int16_t));
|
| + memset(dqcoeff_ptr, 0, count * sizeof(int16_t));
|
| *eob_ptr = 0;
|
| }
|
| }
|
|
|