Commit 6dbe5917 authored by multrus's avatar multrus
Browse files

remove function ari_decode_overflow_ivas_fx(), which was already cleaned up...

remove function ari_decode_overflow_ivas_fx(), which was already cleaned up during encoder harmonizations
parent 09194770
Loading
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -7452,9 +7452,6 @@ void IGFSCFDecoderDecode(
Word32 ari_decode_overflow_fx(
    Tastat *s );

Word32 ari_decode_overflow_ivas_fx(
    Tastat *s );

void ari_start_decoding_14bits_fx(
    Decoder_State *st,
    Tastat *s );
+0 −7
Original line number Diff line number Diff line
@@ -26,13 +26,6 @@ Word32 ari_decode_overflow_fx( Tastat *s )
    return ( L_sub( s->high, s->low ) <= 0 );
}

#ifdef FIX_2402_REPL_EVS_ARI_CODEC_DEC
Word32 ari_decode_overflow_ivas_fx( Tastat *s )
{
    return ( L_sub( s->high, s->low ) <= 0 );
}
#endif

/**
 * \brief     Start ArCo decoding
 *
+0 −4
Original line number Diff line number Diff line
@@ -81,11 +81,7 @@ static Word16 tcx_arith_decode_fx(
            move32();
        }

#ifdef FIX_2402_REPL_EVS_ARI_CODEC_DEC
        IF( ari_decode_overflow_ivas_fx( &as ) )
#else
        IF( ari_decode_overflow_fx( &as ) )
#endif /* FIX_2402_REPL_EVS_ARI_CODEC_DEC */
        {
            if ( LT_16( bp, target_bits ) ) /* safety check in case of bit errors */
            {