Merge "Decoder: Fix in reference list initialization." into mnc-dev am: 0015860fdc am: 9208f9461f am: c783f2efbe am: 68c59343e1 am: 0d7aed6e94 am: b581941c80
am: 9a17d36ba0
Change-Id: Id57da01cbef347c59fdceaa971f11e0b43003ac5
This commit is contained in:
commit
62b880ae82
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