Decoder: Fixed allocation of ps_dec->ps_nbr_mb_row am: 9b095de571 am: ccd57d9029 am: 4ec0548b97

am: 6e50592ca9

Change-Id: I56a790e1ee613f91e55319d1265bc5218fe5dfeb
This commit is contained in:
Harish Mahendrakar 2017-01-06 18:06:30 +00:00 committed by android-build-merger
commit c54813cf06

View file

@ -1940,8 +1940,9 @@ WORD16 ih264d_allocate_dynamic_bufs(dec_struct_t * ps_dec)
if(ps_dec->u1_separate_parse)
{
/* Needs one extra row of info, to hold top row data */
size = sizeof(mb_neigbour_params_t)
* 2 * ((u4_wd_mbs + 2) * u4_ht_mbs);
* 2 * ((u4_wd_mbs + 2) * (u4_ht_mbs + 1));
}
else
{