Commit d7f80c48 authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

do the new comparisons with BASOPs

parent 869496b7
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -499,7 +499,7 @@ ivas_error ivas_dec_setup(
            /* read Ambisonic (SBA) order */
#ifdef NONBE_FIX_SBA_SIGNALING_BITS_B
            /* read the real Ambisonic order when the above bits are used to signal OSBA format */
            if ( ivas_total_brate < IVAS_24k4 )
            if ( LT_32(ivas_total_brate, IVAS_24k4) )
            {
                st_ivas->sba_order = st_ivas->bit_stream[num_bits_read + 1];
                st_ivas->sba_order += 2 * st_ivas->bit_stream[num_bits_read];
+1 −1
Original line number Diff line number Diff line
@@ -702,7 +702,7 @@ void ivas_mct_core_enc_fx(
        test();
#ifdef NONBE_FIX_SBA_SIGNALING_BITS_B
        /*MCT is used at bitrates > 80 kbps and additional 1 bit is present at these bitrates*/
        if ( ivas_format == SBA_ISM_FORMAT )
        if ( EQ_32( ivas_format, SBA_ISM_FORMAT ) )
        {
            nAvailBits -= IVAS_COMBINED_FORMAT_SIGNALLING_BITS;
        }