Commit ad7f60f2 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

in ivas_osba_stereo_add_channels_fx, follow proper BASOP conventions

parent 18edbd41
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -364,17 +364,17 @@ void ivas_osba_stereo_add_channels_fx(
    const UWord16 n_samples_to_render /* i  : output frame length per channel   */
)
{
    int16_t n;
    Word16 n;

#if 0
    if ( ism_mode == ISM_SBA_MODE_DISC )
    IF ( ism_mode == ISM_SBA_MODE_DISC )
    {
#endif
        if ( NE_16( gain, 1 ) )
        IF ( NE_16( gain, 1 ) )
        {
            assert( 0 && "Object editing is not implemented in the BASOP code!" );
        }
        else
        ELSE
        {
            FOR( n = 0; n < nchan_out; n++ )
            {
@@ -383,7 +383,7 @@ void ivas_osba_stereo_add_channels_fx(
        }
#if 0
    }
    else
    ELSE
    {
        FOR( n = 0; n < nchan_out; n++ )
        {