summaryrefslogtreecommitdiffstats
path: root/decoder/ih264d_api.c
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2016-07-12 10:37:28 +0530
committergitbuildkicker <android-build@google.com>2016-08-16 15:51:42 -0700
commit426ab80059049a8f05ce38fe3f422d953413a9b4 (patch)
tree49e5bb4eb90fde64677b2f3bd5820cfacedad38e /decoder/ih264d_api.c
parentcc676ebd95247646e67907ccab150fb77a847335 (diff)
downloadandroid_external_libavc-426ab80059049a8f05ce38fe3f422d953413a9b4.tar.gz
android_external_libavc-426ab80059049a8f05ce38fe3f422d953413a9b4.tar.bz2
android_external_libavc-426ab80059049a8f05ce38fe3f422d953413a9b4.zip
Fixed error concealment when no MBs are decoded in the current pic
Bug: 29493002 Change-Id: I3fae547ddb0616b4e6579580985232bd3d65881e
Diffstat (limited to 'decoder/ih264d_api.c')
-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);