Commit ab4e5f47 authored by sagnowski's avatar sagnowski
Browse files

Keep function name prefixes consistent in ivas_cldfb_ring_buffer.c

parent 3d3cc22c
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ void ivas_CLDFB_RINGBUF_Pop(


/* Returns total number of buffered samples (including number of channels) */
static uint32_t CLDFB_RINGBUF_total_size(
static uint32_t ivas_CLDFB_RINGBUF_total_size(
    ISAR_CLDFB_RINGBUF_HANDLE h )
{
    if ( ivas_CLDFB_RINGBUF_IsFull( h ) )
@@ -263,7 +263,7 @@ void ivas_CLDFB_RINGBUF_GetByIdx(
    const int16_t col_idx )
{
    int32_t idx = col_idx * CLDFB_NO_CHANNELS_MAX;
    int32_t num_floats = (int32_t) CLDFB_RINGBUF_total_size( h );
    int32_t num_floats = (int32_t) ivas_CLDFB_RINGBUF_total_size( h );
    uint32_t offset;

    assert( -num_floats <= idx && idx <= num_floats );