Index: source/libvpx/test/sixtap_predict_test.cc |
=================================================================== |
--- source/libvpx/test/sixtap_predict_test.cc (revision 191025) |
+++ source/libvpx/test/sixtap_predict_test.cc (working copy) |
@@ -61,9 +61,9 @@ |
width_ = GET_PARAM(0); |
height_ = GET_PARAM(1); |
sixtap_predict_ = GET_PARAM(2); |
- memset(src_, 0, sizeof(src_)); |
- memset(dst_, 0, sizeof(dst_)); |
- memset(dst_c_, 0, sizeof(dst_c_)); |
+ memset(src_, 0, kSrcSize); |
+ memset(dst_, 0, kDstSize); |
+ memset(dst_c_, 0, kDstSize); |
} |
int width_; |