Commit 84d59d91 authored by vaclav's avatar vaclav
Browse files

address reviewer's comments

parent 6515fd01
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3276,7 +3276,7 @@ UWord16 delete_indice(
#endif
    }

    return i - j;
    return sub( i, j );
}


+1 −1
Original line number Diff line number Diff line
@@ -254,7 +254,7 @@ void mvr2r_inc_fx(
        return;
    }

    IF( y_fx < x_fx )
    IF( LT_16( y_fx, x_fx ) )
    {
        ix = 0;
        move16();
+1 −1
Original line number Diff line number Diff line
@@ -348,7 +348,7 @@ void mvs2s(
        return;
    }

    IF( y < x )
    IF( LT_16(y, x ) )
    {
        FOR( i = 0; i < n; i++ )
        {
+2 −2
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ void ivas_TD_RINGBUF_PushChannels(

    assert( h != NULL );
    assert( p_channels != NULL );
    FOR( c = 0; c < h->num_channels; ++c ) /* Not using BASOP FOR because this loops only does assertions */
    for ( c = 0; c < h->num_channels; ++c ) /* Not using BASOP FOR because this loops only does assertions */
    {
        assert( p_channels[c] != NULL );
    }
@@ -311,7 +311,7 @@ void ivas_TD_RINGBUF_PopChannels(

    assert( h != NULL );
    assert( p_channels != NULL );
    FOR( c = 0; c < h->num_channels; ++c ) /* Not using BASOP FOR because this loops only does assertions */
    for ( c = 0; c < h->num_channels; ++c ) /* Not using BASOP FOR because this loops only does assertions */
    {
        assert( p_channels[c] != NULL );
    }