Commit 729f2a16 authored by sagnowski's avatar sagnowski
Browse files

Align with port 369 branch

parent 165ee5a9
Loading
Loading
Loading
Loading
Loading
+23 −23
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ void ivas_TD_RINGBUF_Push(
#ifdef FIX_1119_SPLIT_RENDERING_VOIP
    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 );
    }
@@ -342,7 +342,7 @@ void ivas_TD_RINGBUF_PushZeros(
    {
        FOR ( c = 0; c < h->num_channels; ++c )
        {
            h->data[h->write_pos] = 0.f;
            h->data[h->write_pos] = 0;
            move32();
            h->write_pos = L_add( h->write_pos, 1 );

@@ -397,7 +397,7 @@ void ivas_TD_RINGBUF_Pop(
#ifdef FIX_1119_SPLIT_RENDERING_VOIP
    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 );
    }