ref: e343732a92bddb3e8764e4757487bab6667f744c
parent: 48598e30b1927487bf51c5c7543984d18ef7db29
author: Jingning Han <jingning@google.com>
date: Fri Feb 15 09:45:20 EST 2013
Fixed a subtle issue that breaks encoding process This issue breaks the encoding process of the codebase. The effect emerges only in particular test sequence at certain bit-rates and frame limits. Change-Id: I02e080f2a49624eef9a21c424053dc2a1d902452
--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -4306,6 +4306,7 @@
mode8x8[2]= xd->mode_info_context->bmi[8].as_mode.first;
mode8x8[3]= xd->mode_info_context->bmi[10].as_mode.first;
+ mbmi->txfm_size = TX_4X4;
error4x4 = rd_pick_intra4x4mby_modes(cpi, x,
&rate4x4, &rate4x4_tokenonly,
&dist4x4, error16x16);
--
⑨