mirror of
https://github.com/ittiam-systems/libhevc.git
synced 2026-08-15 15:22:36 +07:00
Merge "Handle error return from ref list in slice hdr parsing" into mnc-dev am: 8883b3e2a3 am: 667e459e3f am: 6d700817a0 am: e6e65ce177 am: 098fc089d9 am: 2ee0db6b2a
am: 345ba38fe0
Change-Id: Ibce8919bff8c146e1ba7849f5ac64855163192d6
This commit is contained in:
commit
ab9c6b1b03
1 changed files with 5 additions and 1 deletions
|
|
@ -910,7 +910,11 @@ IHEVCD_ERROR_T ihevcd_parse_slice_header(codec_t *ps_codec,
|
|||
}
|
||||
else
|
||||
{
|
||||
ihevcd_ref_list(ps_codec, ps_pps, ps_sps, ps_slice_hdr);
|
||||
ret = ihevcd_ref_list(ps_codec, ps_pps, ps_sps, ps_slice_hdr);
|
||||
if ((WORD32)IHEVCD_SUCCESS != ret)
|
||||
{
|
||||
return ret;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue