Commit d47996f4 authored by Jan Kiene's avatar Jan Kiene
Browse files

implement switch differently to not confuse formatter

parent a31a4496
Loading
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -1527,7 +1527,6 @@ ivas_error ivas_binRenderer_open_fx(
#ifdef NONBE_FIX_1058_DECODER_ERROR_WITH_REVERB_ROOM
        IF( NE_16( hBinRenderer->nInChannels, HOA3_CHANNELS ) )
        {
#endif
            FOR( chIdx = 0; chIdx < BINAURAL_CHANNELS; chIdx++ )
            {
                FOR( k = 0; k < hBinRenderer->nInChannels; k++ )
@@ -1536,7 +1535,15 @@ ivas_error ivas_binRenderer_open_fx(
                    move32();
                }
            }
#ifdef NONBE_FIX_1058_DECODER_ERROR_WITH_REVERB_ROOM
        }
#else
        FOR( chIdx = 0; chIdx < BINAURAL_CHANNELS; chIdx++ )
        {
            FOR( k = 0; k < hBinRenderer->nInChannels; k++ )
            {
                hBinRenderer->hReverb->dmxmtx_fx[chIdx][k] = dmxmtx_table_fx[chIdx][k];
                move32();
            }
        }
#endif
    }