Merge "rdopt: quiet -Warray-bounds warnings"

This commit is contained in:
James Zern 2014-03-18 15:08:54 -07:00 committed by Gerrit Code Review
commit aad7b55b40

View File

@ -528,19 +528,16 @@ static int cost_coeffs(MACROBLOCK *mb, BLOCKD *b, int type, ENTROPY_CONTEXT *a,
VP8_COMBINEENTROPYCONTEXTS(pt, *a, *l); VP8_COMBINEENTROPYCONTEXTS(pt, *a, *l);
# define QC( I) ( qcoeff_ptr [vp8_default_zig_zag1d[I]] ) assert(eob <= 16);
for (; c < eob; c++) for (; c < eob; c++)
{ {
int v = QC(c); const int v = qcoeff_ptr[vp8_default_zig_zag1d[c]];
int t = vp8_dct_value_tokens_ptr[v].Token; const int t = vp8_dct_value_tokens_ptr[v].Token;
cost += mb->token_costs [type] [vp8_coef_bands[c]] [pt] [t]; cost += mb->token_costs [type] [vp8_coef_bands[c]] [pt] [t];
cost += vp8_dct_value_cost_ptr[v]; cost += vp8_dct_value_cost_ptr[v];
pt = vp8_prev_token_class[t]; pt = vp8_prev_token_class[t];
} }
# undef QC
if (c < 16) if (c < 16)
cost += mb->token_costs [type] [vp8_coef_bands[c]] [pt] [DCT_EOB_TOKEN]; cost += mb->token_costs [type] [vp8_coef_bands[c]] [pt] [DCT_EOB_TOKEN];