diff options
Diffstat (limited to 'src/pulsecore/sink.c')
-rw-r--r-- | src/pulsecore/sink.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index e4c343da..3d08d1a2 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -928,9 +928,6 @@ void pa_sink_process_rewind(pa_sink *s, size_t nbytes) { s->thread_info.rewind_nbytes = 0; s->thread_info.rewind_requested = FALSE; - if (s->thread_info.state == PA_SINK_SUSPENDED) - return; - if (nbytes > 0) { pa_log_debug("Processing rewind..."); if (s->flags & PA_SINK_DEFERRED_VOLUME) @@ -2898,9 +2895,6 @@ void pa_sink_request_rewind(pa_sink*s, size_t nbytes) { pa_sink_assert_io_context(s); pa_assert(PA_SINK_IS_LINKED(s->thread_info.state)); - if (s->thread_info.state == PA_SINK_SUSPENDED) - return; - if (nbytes == (size_t) -1) nbytes = s->thread_info.max_rewind; |