Commit 41aaabf7 authored by sagnowski's avatar sagnowski
Browse files

Fix more conversion errors

parent 70582ac1
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1293,7 +1293,7 @@ static ivas_error isar_generate_metadata_and_bitstream(
    hSplitBinRend = st_ivas->hSplitBinRend;

    max_band = extract_l( ar_div( imult3216( st_ivas->hDecoderConfig->output_Fs, BINAURAL_MAXBANDS ), 48000 ) );
    pcm_out_flag = EQ_32( st_ivas->hDecoderConfig->output_config, IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM );
    pcm_out_flag = extract_l( EQ_32( st_ivas->hDecoderConfig->output_config, IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) );
    cldfb_in_flag = ivas_dec_split_rend_cldfb_in( st_ivas->renderer_type );

    n_samples_in_cldfb_slot = NS2SA_FX2( st_ivas->hDecoderConfig->output_Fs, CLDFB_SLOT_NS );
@@ -1598,7 +1598,7 @@ ivas_error IVAS_DEC_GetSplitBinauralBitstream(
        return IVAS_ERR_WRONG_PARAMS;
    }

    pcm_out_flag = EQ_32( st_ivas->hDecoderConfig->output_config, IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM );
    pcm_out_flag = extract_l( EQ_32( st_ivas->hDecoderConfig->output_config, IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) );
    move16();
    numSamplesPerChannelToOutput = isar_get_frame_size( st_ivas );
    move16();