ref: f05feab7b967ffd717d9437b7803bfbcaeced9a4
parent: 02360dd2c2254880f8c0accdabbc7abc1c808a31
parent: 565d0e6feb3f843ebdbd36cb6a441c397e65c7bb
author: Scott LaVarnway <slavarnway@google.com>
date: Tue Feb 21 04:51:02 EST 2012
Merge "Remove redundant init of segment_counts in vp8_encode_frame"
--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -688,10 +688,8 @@
xd->subpixel_predict16x16 = vp8_bilinear_predict16x16;
}
- // Reset frame count of inter 0,0 motion vector useage.
+ // Reset frame count of inter 0,0 motion vector usage.
cpi->inter_zz_count = 0;
-
- vpx_memset(segment_counts, 0, sizeof(segment_counts));
cpi->prediction_error = 0;
cpi->intra_error = 0;
--
⑨