mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-12 15:33:23 -05:00
Fix laudio buffer underrun (issue #87)
This commit is contained in:
parent
b1903e4551
commit
f1a59a3482
@ -281,8 +281,9 @@ laudio_write(uint8_t *buf, uint64_t rtptime)
|
||||
}
|
||||
|
||||
/* Don't let ALSA fill up the buffer too much */
|
||||
if (nsamp == AIRTUNES_V2_PACKET_SAMPLES)
|
||||
return;
|
||||
// Disabled - seems to cause buffer underruns
|
||||
// if (nsamp == AIRTUNES_V2_PACKET_SAMPLES)
|
||||
// return;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user