aboutsummaryrefslogtreecommitdiff
path: root/decoder
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-03-20 04:25:25 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-20 04:25:25 +0000
commit8dd578549476cb831eddbf3a6d3a9f53dd36609c (patch)
tree58a2d92be1695c3f25d1ddd7f732f3031f20bbed /decoder
parentc5053a6a4629220e36e0da5ffa9ee9c3bdb3a6cf (diff)
parentc48a54d3687b637f979a5e2d3bbd9827cf5d1e84 (diff)
downloadlibhevc-8dd578549476cb831eddbf3a6d3a9f53dd36609c.tar.gz
Merge "common: Fix unintialized reads in intra pred sse functions" into qt-qpr1-dev am: c48a54d368
Change-Id: I7ece0c32b535b885bc8d605e5b26a09c94fd58dc
Diffstat (limited to 'decoder')
-rw-r--r--decoder/ihevcd_iquant_itrans_recon_ctb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/ihevcd_iquant_itrans_recon_ctb.c b/decoder/ihevcd_iquant_itrans_recon_ctb.c
index 8425506..504271c 100644
--- a/decoder/ihevcd_iquant_itrans_recon_ctb.c
+++ b/decoder/ihevcd_iquant_itrans_recon_ctb.c
@@ -946,7 +946,7 @@ WORD32 ihevcd_iquant_itrans_recon_ctb(process_ctxt_t *ps_proc)
/* While (MAX_TU_SIZE * 2 * 2) + 1 is the actaul size needed,
au1_ref_sub_out size is kept as multiple of 8,
so that SIMD functions can load 64 bits */
- UWORD8 au1_ref_sub_out[(MAX_TU_SIZE * 2 * 2) + 8];
+ UWORD8 au1_ref_sub_out[(MAX_TU_SIZE * 2 * 2) + 8] = {0};
UWORD8 *pu1_top_left, *pu1_top, *pu1_left;
WORD32 luma_pred_func_idx, chroma_pred_func_idx;