diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2005-08-21 18:12:31 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-08-21 18:12:31 +0000 |
commit | 8a7d104a359aec7776712cb366d1d92e0f0328a8 (patch) | |
tree | 0e90f0cf6300cfa4cc14b258f379920626b50d1c /apps/codecs | |
parent | 6e291fdcdffbccc4663fd90462a4f9fce107aed1 (diff) |
Now codecs will do the buffer flushing after seeking as they find it
necessary.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7369 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/mpa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/codecs/mpa.c b/apps/codecs/mpa.c index 8cc3398ca4..8bfe376818 100644 --- a/apps/codecs/mpa.c +++ b/apps/codecs/mpa.c @@ -177,7 +177,10 @@ enum codec_status codec_start(struct codec_api* api) goto next_track; } ci->seek_time = 0; - if (newpos == 0) frame_skip = start_skip; + if (newpos == 0) + frame_skip = start_skip; + /* Optional but good thing to do. */ + ci->seek_complete(); } /* Lock buffers */ |