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.h | |
| parent | 6e291fdcdffbccc4663fd90462a4f9fce107aed1 (diff) | |
| download | rockbox-8a7d104a359aec7776712cb366d1d92e0f0328a8.zip rockbox-8a7d104a359aec7776712cb366d1d92e0f0328a8.tar.gz rockbox-8a7d104a359aec7776712cb366d1d92e0f0328a8.tar.bz2 rockbox-8a7d104a359aec7776712cb366d1d92e0f0328a8.tar.xz | |
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.h')
| -rw-r--r-- | apps/codecs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/codecs.h b/apps/codecs.h index 3b8e1d8..4a4ccb2 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -79,7 +79,7 @@ #endif /* increase this every time the api struct changes */ -#define CODEC_API_VERSION 40 +#define CODEC_API_VERSION 41 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -327,6 +327,8 @@ struct codec_api { void *(*memchr)(const void *s1, int c, size_t n); void (*set_offset)(unsigned int value); + /* Codec should call this function when it has done the seeking. */ + void (*seek_complete)(void); }; /* defined by the codec loader (codec.c) */ |