Commit 79e06d75 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] wrong variable used for ISM split rendering output buffer

parent f420cac7
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7130,7 +7130,7 @@ static ivas_error renderIsmToSplitBinaural(
        FOR( i = 0; i < BINAURAL_CHANNELS; ++i )
        {
#ifdef FIX_BASOP_2351_EXTREND_SCALE
            Scale_sig32( tmpProcessing[i], outAudio.config.numSamplesPerChannel, negate( sub( Q11, exp ) ) ); /* Q(exp) */
            Scale_sig32( tmpProcessing[i], output_frame, negate( sub( Q11, exp ) ) ); /* Q(exp) */
#else
            Scale_sig32( tmpProcessing[i], L_FRAME48k, negate( sub( Q11, exp ) ) ); /* Q(exp) */
#endif