1
0
Fork 0
forked from len0rd/rockbox

commit asap codec. plays .sap files. At the moment it only plays the default song. So subSongs are ignored.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18121 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2008-07-26 15:16:10 +00:00
parent 4e4bf82fb7
commit 25bb37bb68
18 changed files with 461 additions and 10 deletions

View file

@ -196,6 +196,7 @@ struct codec_api {
void* (*memmove)(void *out, const void *in, size_t n);
int (*memcmp)(const void *s1, const void *s2, size_t n);
void *(*memchr)(const void *s1, int c, size_t n);
char *(*strcasestr) (const char* phaystack, const char* pneedle);
#if defined(DEBUG) || defined(SIMULATOR)
void (*debugf)(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);