summaryrefslogtreecommitdiff
path: root/apps/codecs.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-02-11 16:37:12 +0000
committerThomas Martitz <kugel@rockbox.org>2009-02-11 16:37:12 +0000
commit548109084f739cf74d2263cbd136f82eb67ea9d5 (patch)
tree65038ab71d12e0ee6cb236b518b0ccf3bb531c8c /apps/codecs.c
parentf2d5c3532fd21c04e77aa86732742b578283b697 (diff)
downloadrockbox-548109084f739cf74d2263cbd136f82eb67ea9d5.tar.gz
rockbox-548109084f739cf74d2263cbd136f82eb67ea9d5.zip
Increase codec and plugin API version (due to changes it r19971), and sort the recently added things
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19973 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.c')
-rw-r--r--apps/codecs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs.c b/apps/codecs.c
index 4fcf9ce02f..565adcf203 100644
--- a/apps/codecs.c
+++ b/apps/codecs.c
@@ -101,6 +101,9 @@ struct codec_api ci = {
101 NULL, /* configure */ 101 NULL, /* configure */
102 102
103 /* kernel/ system */ 103 /* kernel/ system */
104#ifdef CPU_ARM
105 __div0,
106#endif
104 PREFIX(sleep), 107 PREFIX(sleep),
105 yield, 108 yield,
106 109
@@ -169,9 +172,6 @@ struct codec_api ci = {
169 172
170 /* new stuff at the end, sort into place next time 173 /* new stuff at the end, sort into place next time
171 the API gets incompatible */ 174 the API gets incompatible */
172#ifdef CPU_ARM
173 __div0,
174#endif
175}; 175};
176 176
177void codec_get_full_path(char *path, const char *codec_root_fn) 177void codec_get_full_path(char *path, const char *codec_root_fn)