Commit 2d963fd4 authored by sagnowski's avatar sagnowski
Browse files

Fix int conversion warnings

parent 0dd84471
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1952,7 +1952,7 @@ static ivas_error isar_generate_metadata_and_bitstream(
    if ( !td_input )
    {
        num_poses = hSplitBinRend->splitrend.multiBinPoseData.num_poses;
        num_cldfb_slots = hIvasDec->st_ivas->hDecoderConfig->render_framesize * JBM_CLDFB_SLOTS_IN_SUBFRAME;
        num_cldfb_slots = (int16_t) hIvasDec->st_ivas->hDecoderConfig->render_framesize * JBM_CLDFB_SLOTS_IN_SUBFRAME;

        for ( i = 0; i < (int16_t) ( BINAURAL_CHANNELS * num_poses ); ++i )
        {
+1 −1
Original line number Diff line number Diff line
@@ -382,7 +382,7 @@ ivas_error ISAR_PRE_REND_MultiBinToSplitBinaural(
    else
    {
        int16_t ch, slot_idx, num_slots;
        num_slots = isar_frame_size_ms * 1000000 / CLDFB_SLOT_NS;
        num_slots = (int16_t) isar_frame_size_ms * 1000000 / CLDFB_SLOT_NS;

        /* CLDFB synthesis of main pose */
        for ( ch = 0; ch < BINAURAL_CHANNELS; ch++ )