summaryrefslogtreecommitdiffstats
path: root/polyp/play-memchunk.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/play-memchunk.c')
-rw-r--r--polyp/play-memchunk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/polyp/play-memchunk.c b/polyp/play-memchunk.c
index 5c423567..b94a0524 100644
--- a/polyp/play-memchunk.c
+++ b/polyp/play-memchunk.c
@@ -59,11 +59,12 @@ static void si_kill(struct pa_mainloop_api *m, void *i) {
sink_input_kill(i);
}
-static void sink_input_drop(struct pa_sink_input *i, size_t length) {
+static void sink_input_drop(struct pa_sink_input *i, const struct pa_memchunk*chunk, size_t length) {
struct pa_memchunk *c;
assert(i && length && i->userdata);
c = i->userdata;
+ assert(chunk == c);
assert(length <= c->length);
c->length -= length;