summaryrefslogtreecommitdiffstats
path: root/audio/out/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/out/buffer.c')
-rw-r--r--audio/out/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/buffer.c b/audio/out/buffer.c
index 720cfaa58e..d1563452d1 100644
--- a/audio/out/buffer.c
+++ b/audio/out/buffer.c
@@ -366,7 +366,7 @@ void ao_resume(struct ao *ao)
pthread_mutex_lock(&p->lock);
if (p->playing && p->paused) {
- if (p->streaming && ao->driver->resume)
+ if (ao->driver->resume && (!p->streaming || ao->driver->play))
ao->driver->resume(ao);
p->paused = false;
p->expected_end_time = 0;