Commit 6cbfcd50 authored by sagnowski's avatar sagnowski
Browse files

Align one more thing with port 369

parent 8a93dcbe
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ void ivas_TD_RINGBUF_Push(
            h->data[h->write_pos] = p_channels[c][s];
            move32();
#else
            h->data[h->write_pos] = data[L_add( L_mult0( c, num_samples_per_channel ), s )];
            h->data[h->write_pos] = data[L_mac0( s, c, num_samples_per_channel )];
            move32();
#endif
            h->write_pos = L_add( h->write_pos, 1 );
@@ -412,7 +412,7 @@ void ivas_TD_RINGBUF_Pop(
            p_channels[c][s] = h->data[h->read_pos];
            move32();
#else
            data[L_add( L_mult0( c, num_samples_per_channel ), s )] = h->data[h->read_pos];
            data[L_mac0( s, c, num_samples_per_channel )] = h->data[h->read_pos];
            move32();
#endif
            ++h->read_pos;