Index: source/libvpx/vp9/encoder/x86/vp9_highbd_quantize_intrin_sse2.c |
diff --git a/source/libvpx/vp9/encoder/x86/vp9_highbd_quantize_intrin_sse2.c b/source/libvpx/vp9/encoder/x86/vp9_highbd_quantize_intrin_sse2.c |
index 0bce9c321e64833caf86bf7eb51a693ff29fb1a7..ffa43b65a59d86ec641b3212b05fb962724229e2 100644 |
--- a/source/libvpx/vp9/encoder/x86/vp9_highbd_quantize_intrin_sse2.c |
+++ b/source/libvpx/vp9/encoder/x86/vp9_highbd_quantize_intrin_sse2.c |
@@ -44,8 +44,8 @@ void vp9_highbd_quantize_b_sse2(const tran_low_t *coeff_ptr, |
(void)scan; |
- vpx_memset(qcoeff_ptr, 0, count * sizeof(*qcoeff_ptr)); |
- vpx_memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); |
+ memset(qcoeff_ptr, 0, count * sizeof(*qcoeff_ptr)); |
+ memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr)); |
if (!skip_block) { |
// Pre-scan pass |
@@ -132,8 +132,8 @@ void vp9_highbd_quantize_b_32x32_sse2(const tran_low_t *coeff_ptr, |
nzbins[0] = _mm_sub_epi32(nzbins[0], zbins[0]); |
nzbins[1] = _mm_sub_epi32(nzbins[1], zbins[1]); |
- vpx_memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); |
- vpx_memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); |
+ memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr)); |
+ memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr)); |
if (!skip_block) { |
// Pre-scan pass |