aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Ragir <akshay.ragir@ittiam.com>2023-09-14 14:34:46 +0530
committerDivya B M <89966460+divya-bm@users.noreply.github.com>2023-09-14 18:12:59 +0530
commitc07f14410b8246fbba9dd12d31c42cf924219331 (patch)
tree8bc12a9aa54b5300874c3907715eceef58ed1e7b
parent1cc5b8209617afd8e7e9bda5e0c8b4ced2fc46f4 (diff)
downloadlibxaac-c07f14410b8246fbba9dd12d31c42cf924219331.tar.gz
Fix for build warnings on armv7
-rw-r--r--encoder/iusace_fd_fac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/encoder/iusace_fd_fac.c b/encoder/iusace_fd_fac.c
index 9cc9fed..27824a3 100644
--- a/encoder/iusace_fd_fac.c
+++ b/encoder/iusace_fd_fac.c
@@ -173,7 +173,7 @@ IA_ERRORCODE iusace_fd_fac(WORD32 *sfb_offsets, WORD32 sfb_active, FLOAT64 *orig
FLOAT32 *zir_sig = NULL;
FLOAT32 *lpc_coeffs_q = NULL;
WORD32 index;
- WORD32 low_pass_line;
+ WORD32 low_pass_line = 0;
WORD32 fac_len;
FLOAT64 *left_fac_time_data = pstr_scratch->p_left_fac_time_data;
FLOAT32 *left_fac_timedata_flt = pstr_scratch->p_left_fac_timedata_flt;