Commit 046eda1d authored by sagnowski's avatar sagnowski
Browse files

FIx windows warnings

parent e3e976b4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ typedef struct _ISAR_SPLIT_REND_BITS_DATA
    ISAR_SPLIT_REND_CODEC codec;
    ISAR_SPLIT_REND_POSE_CORRECTION_MODE pose_correction;
#ifdef SPLIT_REND_EXTEND_BITSTREAM_HEADER
    int32_t lc3plus_highres;
    int16_t lc3plus_highres;
#endif

} ISAR_SPLIT_REND_BITS_DATA, *ISAR_SPLIT_REND_BITS_HANDLE;
+1 −1
Original line number Diff line number Diff line
@@ -1525,7 +1525,7 @@ static ivas_error renderSplitBinauralWithPostRot(
        if ( bits.pose_correction != ISAR_SPLIT_REND_POSE_CORRECTION_MODE_NONE )
        {
            // This info is currently unused, but will later be needed e.g. when packing SR bitstream into RTP
            split_rend_md_section_size_bits = ISAR_SPLIT_REND_BITStream_read_int32( &bits, IVAS_SPLIT_REND_MD_SIZE_BITS );
            split_rend_md_section_size_bits = (int16_t) ISAR_SPLIT_REND_BITStream_read_int32( &bits, IVAS_SPLIT_REND_MD_SIZE_BITS );
            (void) split_rend_md_section_size_bits;
        }
#endif