Commit 98fb4c5a authored by vaclav's avatar vaclav
Browse files

Merge remote-tracking branch 'remotes/origin/main' into RTP_revision

parents 885eee35 fdd4a771
Loading
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -420,7 +420,6 @@ static Word16 fcb_table(
    const Word16 L_subfr )
{
    Word16 out;
    // PMT("Not floating point computation, but fixed point operator are still missing ")

    out = PulseConfTable[n].bits;
    move16();
@@ -454,7 +453,6 @@ static ivas_error acelp_FCB_allocator_fx(
    Word16 *p_fixed_cdk_index;
    Word16 max_n;
    ivas_error error;
    // PMT("Not floating point computation, but fixed point operator are still missing ")

    error = IVAS_ERR_OK;
    move32();
@@ -1693,7 +1691,6 @@ static Word16 allocate_unused(
    Word16 max_bit_per_pos = 0, bit_added = 0;
    move16();
    move16();
    // PMT("Not floating point computation, but fixed point operator are still missing ")

    IF( prm_type == GAINSPRM )
    {
@@ -1797,7 +1794,6 @@ Word16 set_ACELP_flag(
    const Word16 cng_type       /* i  : CNG type                    */
)
{
    // PMT("Not floating point computation, but fixed point operator are still missing ")
    test();
    test();
    test();
+0 −4
Original line number Diff line number Diff line
@@ -1811,7 +1811,6 @@ void apply_scale(
)
{
    Word16 i;
    // PMT("Verifiy if the basop ued are ok for stereo too")
    FOR( i = 0; i < scaleTableSize; i++ )
    {
        cast16();
@@ -1844,7 +1843,6 @@ Word16 apply_scale_ind(
)
{
    Word16 i;
    // PMT("Verifiy if the basop ued are ok for stereo too")
    FOR( i = 0; i < scaleTableSize; i++ )
    {
        cast16();
@@ -1872,7 +1870,6 @@ void apply_scale_ivas_fx(
    Word16 *index )
{
    Word16 i;
    // PMT("Verifiy if the basop ued are ok for stereo too")
    FOR( i = 0; i < scaleTableSize; i++ )
    {
        cast16();
@@ -3137,7 +3134,6 @@ void msvq_decoder(
{
    Word16 s, i, offset;

    // PMT("msvq_decoder Not verified")

    offset = i_mult( Idx[0], maxN );
    FOR( i = 0; i < N; i++ )
+0 −12
Original line number Diff line number Diff line
@@ -926,12 +926,6 @@ void ivas_harm_bwe_fx(
        {
            exp1 = add( 1, exp1 );
        }
#ifdef DEBUGGING
        else
        {
            // PMT("VERIFY if this really matches IVAS float")
        }
#endif
        tmp1 = s_max( tmp1, 16384 );
        tmp1 = div_s( 16384, tmp1 );
        L_tmp2 = L_deposit_h( tmp1 );
@@ -1095,12 +1089,6 @@ void harm_bwe_fx(
        {
            exp1 = add( 1, exp1 );
        }
#ifdef DEBUGGING
        else
        {
            // PMT("VERIFY if this really matches IVAS float")
        }
#endif
        tmp1 = s_max( tmp1, 16384 );
        tmp1 = div_s( 16384, tmp1 );        /*Q15*/
        L_tmp2 = L_deposit_h( tmp1 );       /*Q31*/
+0 −2
Original line number Diff line number Diff line
@@ -66,7 +66,6 @@ void mdct_window_sine_IVAS_updated(
            window[i].v.im = table[i].v.im; /* Qx */
            move16();
        }
        // PMT("getSineWindowTable needs to be updated for IVAS")
    }
    ELSE
    {
@@ -133,7 +132,6 @@ void mdct_window_sine(
            window[i].v.im = table[i].v.im; /* Qx */
            move16();
        }
        // PMT("getSineWindowTable needs to be updated for IVAS")
    }
}

+1 −1
Original line number Diff line number Diff line
@@ -1890,7 +1890,7 @@ Word16 mean_fx(
)
{
    Word16 tmp;
    // PMT("TBV : this function could be written differently to minimize the risk of saturation");
    /* this function could be written differently to minimize the risk of saturation */
    tmp = sum16_fx( vec_fx, lvec_fx );
    tmp = mult_r( tmp, div_s( 1, lvec_fx ) );

Loading