From: Yaowu Xu Date: Thu, 17 Oct 2013 23:02:53 +0000 (-0700) Subject: fix a VP8 build issue X-Git-Tag: v1.3.0~193 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd54f0babdfbb79cfa9c2941cd06389da7b20419;p=platform%2Fupstream%2Flibvpx.git fix a VP8 build issue coef_counts is now in cpi->mb, instead of cpi. The commit corrected the mis-use and enable succefual build. Change-Id: I0e77909d34571cfd2560c66b46b1f8fa0cd1a6b4 --- diff --git a/vp8/encoder/bitstream.c b/vp8/encoder/bitstream.c index 8ca4f5f..78e54e2 100644 --- a/vp8/encoder/bitstream.c +++ b/vp8/encoder/bitstream.c @@ -1062,7 +1062,7 @@ int vp8_update_coef_context(VP8_COMP *cpi) if (cpi->common.frame_type == KEY_FRAME) { /* Reset to default counts/probabilities at key frames */ - vp8_copy(cpi->coef_counts, default_coef_counts); + vp8_copy(cpi->mb.coef_counts, default_coef_counts); } if (cpi->oxcf.error_resilient_mode & VPX_ERROR_RESILIENT_PARTITIONS)