From 3f11ff62705c1a82ffa61790b16bd180012fc8fb Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 4 Dec 2005 16:37:38 +0000 Subject: Bugfix: Prevent spurious bitswap when switching from recording to playback. This caused erratic voice UI behaviour under certain conditions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8148 a1c6a512-1295-4272-9138-f99709370657 --- firmware/mpeg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/firmware/mpeg.c b/firmware/mpeg.c index ef7c315b0c..a162887fd9 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -2023,6 +2023,7 @@ static void mpeg_thread(void) case MPEG_INIT_PLAYBACK: /* Stop the prerecording */ stop_recording(); + reset_mp3_buffer(); mp3_play_init(); init_playback_done = true; break; -- cgit v1.2.3