Commit 3d0122a2 authored by multrus's avatar multrus
Browse files

Merge branch '2076_basop_portFltMr2267_initIgfDec' into 'main'

Port Flt MR 2267 to main - [MSAN Clang 18] use-of-uninitialized value in open_decoder_LPD

Closes #2076

See merge request !2334
parents bd382a79 980f3870
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@
#define FIX_1113_EXTREND_ISAR                           /* FhG: issue 1113: fix external renderer asserts for FOA/HOA2 and CLDFB config */
#define FIX_938_COMPILER_WARNING                        /* FhG: Fix compiler warning in ivas_mdct_core_reconstruct() */
#define FIX_1376_MISSING_ISM_METADATA                   /* FhG: IVAS_rend: throw error if there exists an ISM input without a corresponding metadata file path */
#define FIX_1385_INIT_IGF_STOP_FREQ                     /* FhG: Initialize infoIGFStopFreq in init_igf_dec() */

/* #################### End BASOP porting switches ############################ */

+4 −0
Original line number Diff line number Diff line
@@ -4292,6 +4292,10 @@ void init_igf_dec(
    hIGFDec->flag_sparse = &hIGFDec->flag_sparseBuf[0];
    hIGFDec->infoTCXNoise_ptr = &hIGFDec->infoTCXNoise_evs[0];
    hIGFDec->virtualSpec_fx = &hIGFDec->virtualSpec[0];
#ifdef FIX_1385_INIT_IGF_STOP_FREQ
    hIGFDec->infoIGFStopFreq = 0;
    move16();
#endif

    return;
}