diff options
-rw-r--r-- | src/til_stream.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/til_stream.c b/src/til_stream.c index 3c0a4f5..72351ca 100644 --- a/src/til_stream.c +++ b/src/til_stream.c @@ -255,7 +255,8 @@ int til_stream_tap(til_stream_t *stream, const void *owner, const void *owner_fo } /* this looks to be the pipe, but we're not driving, should we be? */ - if (pipe->driving_tap->inactive) + if (pipe->driving_tap->inactive || + pipe->frame != stream->frame) /* every frame's a race for who's driving, because clones */ pipe->driving_tap = tap; *(tap->ptr) = pipe->driving_tap->elems; |