Commit a4a64ba0 authored by janssonfr's avatar janssonfr
Browse files

Compiler warning fixed

parent c4fcf91d
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -163,7 +163,9 @@ ivas_error pre_proc_front_ivas(
    float temp1F_icatdmResampBuf[L_FILT_MAX]; /* temp buffers for ICA TDM resamplers */
    int16_t old_pitch1;                       /* previous frame OL pitch[1] @12.8 kHz */
    int16_t LR_localVAD;
#ifndef FIX_560_VAD_FLAG
    int16_t LR_vad_flag;
#endif
    ivas_error error;

    push_wmops( "pre_proc_front" );
@@ -180,7 +182,9 @@ ivas_error pre_proc_front_ivas(
    res_cod_SNR_M = tmpF;

    LR_localVAD = 0;
#ifndef FIX_560_VAD_FLAG
    LR_vad_flag = 0;
#endif

    if ( hSCE != NULL )
    {
@@ -208,7 +212,9 @@ ivas_error pre_proc_front_ivas(
        {
            /* Combine localVAD and vad_flag from LR processing */
            LR_localVAD = hCPE->hCoreCoder[0]->localVAD || hCPE->hCoreCoder[1]->localVAD;
#ifndef FIX_560_VAD_FLAG
            LR_vad_flag = hCPE->hFrontVad[0]->hVAD->vad_flag || hCPE->hFrontVad[1]->hVAD->vad_flag;
#endif
        }

        if ( hCPE->hStereoTD != NULL )