Commit 4d788620 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix if condition in renormalize_channels

parent f5f1345a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -287,7 +287,7 @@ int16_t reorder_channels( float *in[], float *out[], int16_t order, AMBI_CHANNEL
        {
            idx_table = REORDER_ACN_FM;
        }
        if ( out_format == AMBI_CHANNEL_ORDER_SID )
        else if ( out_format == AMBI_CHANNEL_ORDER_SID )
        {
            idx_table = REORDER_ACN_SID;
        }
@@ -302,7 +302,7 @@ int16_t reorder_channels( float *in[], float *out[], int16_t order, AMBI_CHANNEL
        {
            idx_table = REORDER_FM_ACN;
        }
        if ( in_format == AMBI_CHANNEL_ORDER_SID )
        else if ( in_format == AMBI_CHANNEL_ORDER_SID )
        {
            idx_table = REORDER_SID_ACN;
        }