diff options
Diffstat (limited to 'src/ufo-roof-buffer.h')
-rw-r--r-- | src/ufo-roof-buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ufo-roof-buffer.h b/src/ufo-roof-buffer.h index bb71791..367f2d5 100644 --- a/src/ufo-roof-buffer.h +++ b/src/ufo-roof-buffer.h @@ -7,8 +7,8 @@ struct _UfoRoofBuffer { guint current_id; // The ID of the first (active) dataset in the buffer guint ring_size; // Number of datasets to buffer - void *ring_buffer; // The ring buffer - _Atomic int *n_fragments; // Number of completed fragments in each buffer + uint8_t *ring_buffer; // The ring buffer + _Atomic guint *n_fragments; // Number of completed fragments in each buffer guint *stream_fragment; // Currently processed fragment in the stream (for ordered streams) // int *fragments; // Mark individual completed fragments (if we care for partial data) |