Merge "Handle error return from ref list in slice hdr parsing" into mnc-dev am: 8883b3e2a3 am: 667e459e3f am: 6d700817a0

am: e6e65ce177

Change-Id: I8f5ecf4837e4a45c21b9ab7ba7a5ae3f0c09c3a9
This commit is contained in:
Marco Nelissen 2017-03-13 23:05:55 +00:00 committed by android-build-merger
commit 098fc089d9

View file

@ -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;
}
}