From d52c6614c5d4711a6574981cd04c3e103551b608 Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Wed, 17 Jun 2009 08:47:51 +0000 Subject: Commit FS#10335 from Jeffrey Goode. Ensure that the PCM buffer is flushed at the end of the last track in a playlist. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21316 a1c6a512-1295-4272-9138-f99709370657 --- apps/pcmbuf.c | 6 ++++++ apps/pcmbuf.h | 1 + apps/playback.c | 2 ++ 3 files changed, 9 insertions(+) (limited to 'apps') diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c index 47cb832be4..b8d8a0c8d0 100644 --- a/apps/pcmbuf.c +++ b/apps/pcmbuf.c @@ -1154,3 +1154,9 @@ bool pcmbuf_is_crossfade_enabled(void) return crossfade_enabled; } + +void pcmbuf_play_remainder(void) +{ + if (audiobuffer_fillpos) + pcmbuf_flush_fillpos(); +} diff --git a/apps/pcmbuf.h b/apps/pcmbuf.h index b4e551f74d..4cb1c1acb7 100644 --- a/apps/pcmbuf.h +++ b/apps/pcmbuf.h @@ -75,5 +75,6 @@ void pcmbuf_beep(unsigned int frequency, size_t duration, int amplitude); int pcmbuf_used_descs(void); int pcmbuf_descs(void); +void pcmbuf_play_remainder(void); #endif diff --git a/apps/playback.c b/apps/playback.c index 2c526a711e..53d2181bcf 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -2182,6 +2182,8 @@ static void audio_stop_playback(void) /* If we were playing, save resume information */ if (playing) { + pcmbuf_play_remainder(); + struct mp3entry *id3 = NULL; if (!ci.stop_codec) -- cgit v1.2.3