From 6eb0a7f35ad9de28721f8b86c62f0eb9e5790452 Mon Sep 17 00:00:00 2001 From: jojo61 Date: Sun, 6 Oct 2019 10:41:09 +0200 Subject: [PATCH] Fix Radio --- audio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio.c b/audio.c index f61484c..a4cdb55 100644 --- a/audio.c +++ b/audio.c @@ -2334,8 +2334,8 @@ void AudioEnqueue(const void *samples, int count) } // forced start or enough video + audio buffered // for some exotic channels * 4 too small -// if (AudioStartThreshold * 4 < n || (AudioVideoIsReady - if ((AudioVideoIsReady + if (AudioStartThreshold * 4 < n || (AudioVideoIsReady +// if ((AudioVideoIsReady && AudioStartThreshold < n)) { // restart play-back // no lock needed, can wakeup next time