diff options
Diffstat (limited to 'src/modules/module-pipe-sink.c')
-rw-r--r-- | src/modules/module-pipe-sink.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/modules/module-pipe-sink.c b/src/modules/module-pipe-sink.c index ef18fad6f..1fcea171b 100644 --- a/src/modules/module-pipe-sink.c +++ b/src/modules/module-pipe-sink.c @@ -180,12 +180,11 @@ static void thread_func(void *userdata) { pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL); + if (u->sink->thread_info.rewind_requested) + pa_sink_process_rewind(u->sink, 0); + /* Render some data and write it to the fifo */ if (PA_SINK_IS_OPENED(u->sink->thread_info.state)) { - - if (u->sink->thread_info.rewind_requested) - pa_sink_process_rewind(u->sink, 0); - if (pollfd->revents) { if (process_render(u) < 0) goto fail; |