summaryrefslogtreecommitdiff
path: root/include/kitchensink/internal
diff options
context:
space:
mode:
authorTuomas Virtanen <katajakasa@gmail.com>2016-01-11 02:35:02 +0200
committerTuomas Virtanen <katajakasa@gmail.com>2016-01-11 02:35:02 +0200
commit9ad6420f5e781ec3800604835221cf026b91483c (patch)
tree1785f04af6bb60eff1c68245dbe27427d5a52031 /include/kitchensink/internal
parent8ee9b3e560a39d65c62a87fc797ddcc1279b3a78 (diff)
Basic video sync + frameskip + play/pause/stop control
Diffstat (limited to 'include/kitchensink/internal')
-rw-r--r--include/kitchensink/internal/kitbuffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/kitchensink/internal/kitbuffer.h b/include/kitchensink/internal/kitbuffer.h
index 772edf1..19a0c79 100644
--- a/include/kitchensink/internal/kitbuffer.h
+++ b/include/kitchensink/internal/kitbuffer.h
@@ -14,6 +14,8 @@ KIT_LOCAL Kit_Buffer* Kit_CreateBuffer(unsigned int size);
KIT_LOCAL void Kit_DestroyBuffer(Kit_Buffer *buffer);
KIT_LOCAL void* Kit_ReadBuffer(Kit_Buffer *buffer);
+KIT_LOCAL void* Kit_PeekBuffer(const Kit_Buffer *buffer);
+KIT_LOCAL void Kit_AdvanceBuffer(Kit_Buffer *buffer);
KIT_LOCAL int Kit_WriteBuffer(Kit_Buffer *buffer, void *ptr);
KIT_LOCAL int Kit_IsBufferFull(const Kit_Buffer *buffer);