Commit ceb03ef7 authored by multrus's avatar multrus
Browse files

rename ari_encode_14bits_high_low_ivas_fx() to ari_encode_14bits_high_low_fx()

parent 4d85f23a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
 *-------------------------------------------------------------*/

#ifdef FIX_2402_REPL_EVS_ARI_CODEC_ENC
static Word16 ari_encode_14bits_high_low_ivas_fx(
static Word16 ari_encode_14bits_high_low_fx(
    Word16 *ptr, /* Q0 */
    Word16 bp,   /* Q0 */
    Word16 bits, /* Q0 */
@@ -406,7 +406,7 @@ Word16 ari_encode_14bits_range_ivas_fx(
    high = L_add( s->low, mul_sbc_14bits( range, cum_freq_high ) ); /* Q0 */
    low = L_add( s->low, mul_sbc_14bits( range, cum_freq_low ) );   /* Q0 */

    Word16 ret = ari_encode_14bits_high_low_ivas_fx( ptr, bp, bits, s, high, low );
    Word16 ret = ari_encode_14bits_high_low_fx( ptr, bp, bits, s, high, low );
    return ret;
}
#endif /* FIX_2402_REPL_EVS_ARI_CODEC_ENC */
@@ -653,7 +653,7 @@ Word16 ari_encode_14bits_ext_ivas_fx(
 *
 *-------------------------------------------------------------------------*/

static Word16 ari_encode_14bits_high_low_ivas_fx(
static Word16 ari_encode_14bits_high_low_fx(
    Word16 *ptr, /* Q0 */
    Word16 bp,   /* Q0 */
    Word16 bits, /* Q0 */
@@ -748,5 +748,5 @@ Word16 ari_encode_14bits_sign_ivas_fx(
        low = L_add( low, L_tmp ); /* Q0 */
    }

    return ari_encode_14bits_high_low_ivas_fx( ptr, bp, extract_l( bits ), s, high, low );
    return ari_encode_14bits_high_low_fx( ptr, bp, extract_l( bits ), s, high, low );
}