summaryrefslogtreecommitdiff
path: root/src/internal/kitdecoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/kitdecoder.c')
-rw-r--r--src/internal/kitdecoder.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/internal/kitdecoder.c b/src/internal/kitdecoder.c
index 2d6891b..9c2af91 100644
--- a/src/internal/kitdecoder.c
+++ b/src/internal/kitdecoder.c
@@ -167,6 +167,14 @@ void* Kit_PeekDecoderOutput(Kit_Decoder *dec) {
return ret;
}
+void Kit_ForEachDecoderOutput(Kit_Decoder *dec, Kit_ForEachItemCallback cb, void *userdata) {
+ assert(dec != NULL);
+ if(SDL_LockMutex(dec->lock[KIT_DEC_OUT]) == 0) {
+ Kit_ForEachItemInBuffer(dec->buffer[KIT_DEC_OUT], cb, userdata);
+ SDL_UnlockMutex(dec->lock[KIT_DEC_OUT]);
+ }
+}
+
void Kit_AdvanceDecoderOutput(Kit_Decoder *dec) {
assert(dec != NULL);
if(SDL_LockMutex(dec->lock[KIT_DEC_OUT]) == 0) {