Index: source/libvpx/vp9/encoder/vp9_dct.c |
diff --git a/source/libvpx/vp9/encoder/vp9_dct.c b/source/libvpx/vp9/encoder/vp9_dct.c |
index 41f72f89bb9f23b41d242a0e0abae31ca86c64e2..9e6ca3d594c4ab550f7738e99dd258bfad06f0b0 100644 |
--- a/source/libvpx/vp9/encoder/vp9_dct.c |
+++ b/source/libvpx/vp9/encoder/vp9_dct.c |
@@ -417,8 +417,8 @@ void vp9_fdct8x8_quant_c(const int16_t *input, int stride, |
(void)quant_shift_ptr; |
(void)iscan; |
- 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) { |
// Quantization pass: All coefficients with index >= zero_flag are |