Merge "Decoder: Fix in reference list initialization." into mnc-dev
am: 0015860fdc
Change-Id: I731793974cd3607fed07cb7895234e5f9484a0ea
This commit is contained in:
commit
9208f9461f
1 changed files with 2 additions and 2 deletions
|
|
@ -1494,7 +1494,7 @@ void ih264d_init_ref_idx_lx_b(dec_struct_t *ps_dec)
|
|||
UWORD8 u1_i;
|
||||
pic_buffer_t *ps_ref_pic;
|
||||
|
||||
ps_ref_pic = ps_dpb_mgr->ps_init_dpb[1][0] + MAX_REF_BUFS;
|
||||
ps_ref_pic = ps_dpb_mgr->ps_init_dpb[0][0] + MAX_REF_BUFS;
|
||||
|
||||
if(NULL == ps_ref_pic->pu1_buf1)
|
||||
{
|
||||
|
|
@ -1521,7 +1521,7 @@ void ih264d_init_ref_idx_lx_b(dec_struct_t *ps_dec)
|
|||
UWORD8 u1_i;
|
||||
pic_buffer_t *ps_ref_pic;
|
||||
|
||||
ps_ref_pic = ps_dpb_mgr->ps_init_dpb[1][0];
|
||||
ps_ref_pic = ps_dpb_mgr->ps_init_dpb[0][0];
|
||||
|
||||
if(NULL == ps_ref_pic->pu1_buf1)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue