summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2016-06-13 11:58:50 +0530
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-08-02 01:28:16 -0700
commiteb250876e2b6f8c80a4a40c33c0dc823a1bbb8af (patch)
treecaa08fc3731238f47cf0af982ef5650fe609c033
parent6a2b932cb01275b43cf56f3f8888b22ca03c08b2 (diff)
downloadandroid_external_libavc-eb250876e2b6f8c80a4a40c33c0dc823a1bbb8af.tar.gz
android_external_libavc-eb250876e2b6f8c80a4a40c33c0dc823a1bbb8af.tar.bz2
android_external_libavc-eb250876e2b6f8c80a4a40c33c0dc823a1bbb8af.zip
Decoder: Initialize first_pb_nal_in_pic for error slices
first_pb_nal_in_pic was uninitialized for error clips Ticket: CYNGNOS-3177 Bug: 29023649 Change-Id: Ie4e0a94059c5f675bf619e31534846e2c2ca58ae (cherry picked from commit 7a54468cf8b56745d371baf83694c87a563907fc)
-rw-r--r--decoder/ih264d_api.c1
-rw-r--r--decoder/ih264d_parse_slice.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ih264d_api.c b/decoder/ih264d_api.c
index cef51b0..801960b 100644
--- a/decoder/ih264d_api.c
+++ b/decoder/ih264d_api.c
@@ -1895,6 +1895,7 @@ WORD32 ih264d_video_decode(iv_obj_t *dec_hdl, void *pv_api_ip, void *pv_api_op)
ps_dec->cur_dec_mb_num = 0;
ps_dec->cur_recon_mb_num = 0;
ps_dec->u4_first_slice_in_pic = 2;
+ ps_dec->u1_first_pb_nal_in_pic = 1;
ps_dec->u1_slice_header_done = 0;
ps_dec->u1_dangling_field = 0;
diff --git a/decoder/ih264d_parse_slice.c b/decoder/ih264d_parse_slice.c
index 73bc45d..911b11d 100644
--- a/decoder/ih264d_parse_slice.c
+++ b/decoder/ih264d_parse_slice.c
@@ -940,7 +940,6 @@ WORD32 ih264d_end_of_pic(dec_struct_t *ps_dec,
dec_slice_params_t *ps_cur_slice = ps_dec->ps_cur_slice;
WORD32 ret;
- ps_dec->u1_first_pb_nal_in_pic = 1;
ps_dec->u2_mbx = 0xffff;
ps_dec->u2_mby = 0;
{