summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2016-07-12 10:37:28 +0530
committerJessica Wagantall <jwagantall@cyngn.com>2016-09-08 14:15:35 -0700
commita6c3ff0263a83b903d92a7a85d22f43c56dd0b8c (patch)
treeec0322f9a1a7f7d4c37e6d47a9417d8999f771a1
parentae2756fd89024ed35315944036551e3e6cbe92bf (diff)
downloadandroid_external_libavc-stable/cm-13.0-ZNH2KB.tar.gz
android_external_libavc-stable/cm-13.0-ZNH2KB.tar.bz2
android_external_libavc-stable/cm-13.0-ZNH2KB.zip
Fixed error concealment when no MBs are decoded in the current picstable/cm-13.0-ZNH2KB
CYNGNOS-3235 Bug: 29493002 Change-Id: I3fae547ddb0616b4e6579580985232bd3d65881e (cherry picked from commit b926905ee245644806e62bef92b61c8832c44fd8) (cherry picked from commit 74bd4fa6628b5ee4f76bbe0643147164557799b0)
-rw-r--r--decoder/ih264d_api.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/decoder/ih264d_api.c b/decoder/ih264d_api.c
index e2fa322..431d8db 100644
--- a/decoder/ih264d_api.c
+++ b/decoder/ih264d_api.c
@@ -2136,6 +2136,9 @@ WORD32 ih264d_video_decode(iv_obj_t *dec_hdl, void *pv_api_ip, void *pv_api_op)
else
prev_slice_err = 2;
+ if(ps_dec->u4_first_slice_in_pic && (ps_dec->u2_total_mbs_coded == 0))
+ prev_slice_err = 1;
+
ret1 = ih264d_mark_err_slice_skip(ps_dec, num_mb_skipped, ps_dec->u1_nal_unit_type == IDR_SLICE_NAL, ps_dec->ps_cur_slice->u2_frame_num,
&temp_poc, prev_slice_err);