Commit d314b4b2 authored by Arthur Tritthart's avatar Arthur Tritthart
Browse files

fixed another msan issue when invoking modifyThresholds

parent ce589b01
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -833,7 +833,7 @@ static void modifyThresholds(
    Word16 /*short*/ origF0,                    /*I   - Q10*/
    Word32 origF0_32,                           /*I   - Q26*/
    Word16 * /*short*/ thresholdModification,   /*Q10*/
    Word32 * /*short*/ thresholdModification32, /*Q26*/
    Word32 * /*long*/ thresholdModification32,  /*Q26*/
    const Word16 element_mode )                 /*I/O - Q10*/
{
    Word16 /*int*/ i, /*int*/ nHarmonics;
@@ -1272,12 +1272,12 @@ static void RefineThresholdsUsingPitch_fx(

        IF( EQ_16( element_mode, EVS_MONO ) )
        {
            modifyThresholds( *pF0, 0, origF0, origF0_32,
            modifyThresholds( *pF0, 0, origF0, 0,
                              thresholdModification, thresholdModification32, element_mode );
        }
        ELSE
        {
            modifyThresholds( 0, *pF0_32, origF0, origF0_32,
            modifyThresholds( 0, *pF0_32, 0, origF0_32,
                              thresholdModification, thresholdModification32, element_mode );
        }
    }