Commit 3148a2d4 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix compilation error in split-rendering smoke test

parent c8906c68
Loading
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -183,6 +183,7 @@ ivas_error ivas_sba_dec_reconfigure(
    {
        RENDERER_TYPE renderer_type_new;
        int16_t sba_order_internal;

        sba_order_internal = min( st_ivas->sba_analysis_order, IVAS_MAX_SBA_ORDER );

        /* get new renderer type */
@@ -192,7 +193,7 @@ ivas_error ivas_sba_dec_reconfigure(

            if ( st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL
#ifdef SPLIT_REND_WITH_HEAD_ROT
                 || output_config == AUDIO_CONFIG_BINAURAL_SPLIT_CODED || output_config == AUDIO_CONFIG_BINAURAL_SPLIT_PCM
                 || st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL_SPLIT_CODED || st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL_SPLIT_PCM
#endif
            )
            {
@@ -207,7 +208,7 @@ ivas_error ivas_sba_dec_reconfigure(
        {
            if ( st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL || st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL_ROOM_REVERB
#ifdef SPLIT_REND_WITH_HEAD_ROT
                 || output_config == AUDIO_CONFIG_BINAURAL_SPLIT_CODED || output_config == AUDIO_CONFIG_BINAURAL_SPLIT_PCM
                 || st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL_SPLIT_CODED || st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_BINAURAL_SPLIT_PCM
#endif
            )
            {