1
0
Fork 0
forked from len0rd/rockbox

Fixed a dead lock, file handle leak that caused wps to jam and

selected a smaller i2c timeout value.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6707 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2005-06-14 14:36:46 +00:00
parent 58c71e0e36
commit ef72f99681
4 changed files with 14 additions and 12 deletions

View file

@ -382,7 +382,7 @@ unsigned int audiobuffer_get_latency(void)
bool pcm_is_lowdata(void)
{
if (!pcm_is_playing())
if (!pcm_is_playing() || pcm_paused)
return false;
if (pcmbuf_unplayed_bytes < PCM_WATERMARK)