forked from len0rd/rockbox
Even better end-of-song handling. It might even work now...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@790 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3ad66b95fb
commit
3a25aa4fd4
1 changed files with 4 additions and 2 deletions
|
|
@ -243,6 +243,7 @@ void DEI3(void)
|
|||
|
||||
if(!filling && unplayed_space_left < MPEG_LOW_WATER)
|
||||
{
|
||||
filling = true;
|
||||
queue_post(&mpeg_queue, MPEG_NEED_DATA, 0);
|
||||
}
|
||||
|
||||
|
|
@ -354,7 +355,7 @@ static void mpeg_thread(void)
|
|||
read too large chunks because the bitswapping will take
|
||||
too much time. We must keep the DMA happy and also give
|
||||
the other threads a chance to run. */
|
||||
if(filling)
|
||||
if(mpeg_file >= 0)
|
||||
{
|
||||
DEBUGF("R\n");
|
||||
len = read(mpeg_file, mp3buf+mp3buf_write, amount_to_read);
|
||||
|
|
@ -387,6 +388,7 @@ static void mpeg_thread(void)
|
|||
else
|
||||
{
|
||||
close(mpeg_file);
|
||||
mpeg_file = -1;
|
||||
|
||||
/* Make sure that the write pointer is at a word
|
||||
boundary */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue