diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-22 11:14:02 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-22 11:14:02 +0200 |
commit | 381ea8e4b4c15ef916a692160b50c3491699fe98 (patch) | |
tree | cd0f32b025812e09f8184480c8363c532900facd /bin/common/ring-buffer.c | |
parent | 032ee20f23304e1c67db97f3651052447c2e9bfd (diff) | |
download | uca-381ea8e4b4c15ef916a692160b50c3491699fe98.tar.gz uca-381ea8e4b4c15ef916a692160b50c3491699fe98.tar.bz2 uca-381ea8e4b4c15ef916a692160b50c3491699fe98.tar.xz uca-381ea8e4b4c15ef916a692160b50c3491699fe98.zip |
Update histogram when moving frame slider
Diffstat (limited to 'bin/common/ring-buffer.c')
-rw-r--r-- | bin/common/ring-buffer.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/common/ring-buffer.c b/bin/common/ring-buffer.c index 039024f..850dfc0 100644 --- a/bin/common/ring-buffer.c +++ b/bin/common/ring-buffer.c @@ -44,6 +44,14 @@ ring_buffer_get_current_pointer (RingBuffer *buffer) return buffer->data + (buffer->current_index % buffer->n_blocks_total) * buffer->block_size; } +void +ring_buffer_set_current_pointer (RingBuffer *buffer, + guint index) +{ + g_assert (index < buffer->n_blocks_total); + buffer->current_index = index; +} + gpointer ring_buffer_get_pointer (RingBuffer *buffer, guint index) |