mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix "broken driver" message if empty ring buffer.
This commit is contained in:
parent
9dd248f9d0
commit
c0286b3ab4
@ -1,6 +1,7 @@
|
||||
User johns
|
||||
Date:
|
||||
|
||||
Fix "broken driver" message if empty ring buffer.
|
||||
Enable seamless audio track change.
|
||||
Fix bug #1302: Unsupported pixel format crash.
|
||||
Fix the fix, when sillpicture is called in suspend mode.
|
||||
|
11
audio.c
11
audio.c
@ -2033,10 +2033,10 @@ static void *AudioPlayHandlerThread(void *dummy)
|
||||
pthread_mutex_unlock(&AudioMutex);
|
||||
|
||||
Debug(3, "audio: ----> %dms start\n", (AudioUsedBytes() * 1000)
|
||||
/ (!AudioRing[AudioRingRead].HwSampleRate +
|
||||
!AudioRing[AudioRingRead].HwChannels +
|
||||
AudioRing[AudioRingRead].HwSampleRate *
|
||||
AudioRing[AudioRingRead].HwChannels * AudioBytesProSample));
|
||||
/ (!AudioRing[AudioRingWrite].HwSampleRate +
|
||||
!AudioRing[AudioRingWrite].HwChannels +
|
||||
AudioRing[AudioRingWrite].HwSampleRate *
|
||||
AudioRing[AudioRingWrite].HwChannels * AudioBytesProSample));
|
||||
|
||||
do {
|
||||
int filled;
|
||||
@ -2069,7 +2069,10 @@ static void *AudioPlayHandlerThread(void *dummy)
|
||||
Debug(3, "audio: continue after flush\n");
|
||||
}
|
||||
// try to play some samples
|
||||
err = 0;
|
||||
if (RingBufferUsedBytes(AudioRing[AudioRingRead].RingBuffer)) {
|
||||
err = AudioUsedModule->Thread();
|
||||
}
|
||||
// underrun, check if new ring buffer is available
|
||||
if (!err) {
|
||||
int passthrough;
|
||||
|
Loading…
Reference in New Issue
Block a user