summaryrefslogtreecommitdiff
path: root/softhddev.c
diff options
context:
space:
mode:
Diffstat (limited to 'softhddev.c')
-rw-r--r--softhddev.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/softhddev.c b/softhddev.c
index b45b198..57858ed 100644
--- a/softhddev.c
+++ b/softhddev.c
@@ -2181,10 +2181,15 @@ int Poll(int timeout)
#else
int full;
int t;
-
- // one buffer is full
- full = AudioFreeBytes() < AUDIO_MIN_BUFFER_FREE
- || atomic_read(&VideoPacketsFilled) > VIDEO_PACKET_MAX - 3;
+ int used;
+ int filled;
+
+ used = AudioUsedBytes();
+ filled = atomic_read(&VideoPacketsFilled);
+ // soft limit + hard limit
+ full = (used > AUDIO_MIN_BUFFER_FREE && filled > 3)
+ || AudioFreeBytes() < AUDIO_MIN_BUFFER_FREE
+ || filled >= VIDEO_PACKET_MAX - 3;
if (!full || !timeout) {
return !full;