diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-10-23 13:13:00 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-10-23 13:13:00 +0000 |
| commit | effceea22915a087c1c85ff30d2e62110413edaf (patch) | |
| tree | 6f1340835c950d44fc521bb17ca022e151059762 /apps/codecs.h | |
| parent | 188e898e3c40bafa472fa038167764ebcccf713d (diff) | |
| download | rockbox-effceea22915a087c1c85ff30d2e62110413edaf.zip rockbox-effceea22915a087c1c85ff30d2e62110413edaf.tar.gz rockbox-effceea22915a087c1c85ff30d2e62110413edaf.tar.bz2 rockbox-effceea22915a087c1c85ff30d2e62110413edaf.tar.xz | |
Remove the event object in the kernel since it's rather extraneous at the moment. This makes the codecs and the plugins incompatible, so update fully.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18867 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.h')
| -rw-r--r-- | apps/codecs.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/codecs.h b/apps/codecs.h index 6d8c101..4194524 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -82,12 +82,12 @@ #define CODEC_ENC_MAGIC 0x52454E43 /* RENC */ /* increase this every time the api struct changes */ -#define CODEC_API_VERSION 26 +#define CODEC_API_VERSION 27 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any new function which are "waiting" at the end of the function table) */ -#define CODEC_MIN_API_VERSION 26 +#define CODEC_MIN_API_VERSION 27 /* codec return codes */ enum codec_status { @@ -175,9 +175,6 @@ struct codec_api { void (*semaphore_init)(struct semaphore *s, int max, int start); void (*semaphore_wait)(struct semaphore *s); void (*semaphore_release)(struct semaphore *s); - void (*event_init)(struct event *e, unsigned int flags); - void (*event_wait)(struct event *e, unsigned int for_state); - void (*event_set_state)(struct event *e, unsigned int state); #endif /* NUM_CORES */ #ifdef CACHE_FUNCTIONS_AS_CALL |