diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-05 08:43:36 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-05 08:43:36 +0000 |
commit | eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4 (patch) | |
tree | 74c9b4d7e08b2378b499d63f13c8ea70f74f8351 /apps/codecs/lib/xxx2wav.c | |
parent | a10bb59331b5e48adf307c4538333e9a4e036db9 (diff) |
Patch #1232549 by Ryan Jackson, adds seeking and comments to Vorbis playback
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7025 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib/xxx2wav.c')
-rw-r--r-- | apps/codecs/lib/xxx2wav.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/codecs/lib/xxx2wav.c b/apps/codecs/lib/xxx2wav.c index 1323e07475..b437ca56db 100644 --- a/apps/codecs/lib/xxx2wav.c +++ b/apps/codecs/lib/xxx2wav.c @@ -91,11 +91,7 @@ int memcmp(const void *s1, const void *s2, size_t n) { } void* memchr(const void *s, int c, size_t n) { - /* TO DO: Implement for Tremor */ - (void)s; - (void)c; - (void)n; - return(NULL); + return(local_rb->memchr(s,c,n)); } void* memmove(const void *s1, const void *s2, size_t n) { |