Commit efe76f27 authored by vaclav's avatar vaclav
Browse files

fix instrumented build

parent 2f614e03
Loading
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -3038,6 +3038,9 @@ static ivas_error printConfigInfo_dec(
{
    ivas_error error;
    char config_str[50];
#ifdef NONBE_UNIFIED_DECODING_PATHS_FIX
    AUDIO_CONFIG output_config;
#endif

    /*-----------------------------------------------------------------*
     * Print info on screen
@@ -3137,12 +3140,16 @@ static ivas_error printConfigInfo_dec(
            }
        }

#ifdef NONBE_UNIFIED_DECODING_PATHS_FIX
        output_config = st_ivas->hDecoderConfig->output_config;
        get_channel_config( output_config, &config_str[0] );
#else
        get_channel_config( st_ivas->hDecoderConfig->output_config, &config_str[0] );
#endif
        fprintf( stdout, "Output configuration:   %s\n", config_str );

#ifdef NONBE_UNIFIED_DECODING_PATHS
#ifdef NONBE_UNIFIED_DECODING_PATHS_FIX
        AUDIO_CONFIG output_config = st_ivas->hDecoderConfig->output_config;
#ifdef SPLIT_REND_WITH_HEAD_ROT
        if ( output_config == IVAS_AUDIO_CONFIG_BINAURAL || output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR || output_config == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB || output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || output_config == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM )
#else