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
Change-Id: I4d9657ae5fa28e0a2edf9dacde679e182502d474
This commit is contained in:
commit
6d700817a0
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