Index: source/libvpx/vp8/encoder/quantize.c |
diff --git a/source/libvpx/vp8/encoder/quantize.c b/source/libvpx/vp8/encoder/quantize.c |
index bd47823dd5f7900e840556679f696258e31929b0..c5a7bc67039b78c6d11702914d21896f4da3723c 100644 |
--- a/source/libvpx/vp8/encoder/quantize.c |
+++ b/source/libvpx/vp8/encoder/quantize.c |
@@ -65,8 +65,8 @@ void vp8_regular_quantize_b_c(BLOCK *b, BLOCKD *d) |
short *dequant_ptr = d->dequant; |
short zbin_oq_value = b->zbin_extra; |
- vpx_memset(qcoeff_ptr, 0, 32); |
- vpx_memset(dqcoeff_ptr, 0, 32); |
+ memset(qcoeff_ptr, 0, 32); |
+ memset(dqcoeff_ptr, 0, 32); |
eob = -1; |