Commit 393cfa9e authored by PLAINSI's avatar PLAINSI
Browse files

Fix Linux warning

parent 2a725a1d
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -315,7 +315,7 @@ ivas_error ivas_ls_setup_conversion_open(
#ifdef MC_PARAMUPMIX_MODE
    int16_t paramUpmixMonoStereo;

    if ( st_ivas->ivas_format == MC_FORMAT && st_ivas->mc_mode == MC_MODE_PARAMUPMIX && ( st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_MONO ) || ( st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_STEREO ) )
    if ( st_ivas->ivas_format == MC_FORMAT && st_ivas->mc_mode == MC_MODE_PARAMUPMIX && ( st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_MONO || st_ivas->hDecoderConfig->output_config == AUDIO_CONFIG_STEREO ) )
    {
        paramUpmixMonoStereo = TRUE;
    }