summaryrefslogtreecommitdiff
path: root/apps/codecs.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-07-05 08:43:36 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-07-05 08:43:36 +0000
commiteaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4 (patch)
tree74c9b4d7e08b2378b499d63f13c8ea70f74f8351 /apps/codecs.h
parenta10bb59331b5e48adf307c4538333e9a4e036db9 (diff)
downloadrockbox-eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4.tar.gz
rockbox-eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4.zip
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.h')
-rw-r--r--apps/codecs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index 1a03139be8..5878ca9185 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -240,7 +240,7 @@ struct codec_api {
240#endif 240#endif
241#if CONFIG_HWCODEC == MASNONE 241#if CONFIG_HWCODEC == MASNONE
242 void (*pcm_play_data)(const unsigned char *start, int size, 242 void (*pcm_play_data)(const unsigned char *start, int size,
243 void (*get_more)(unsigned char** start, long*size)); 243 void (*get_more)(unsigned char** start, long*size));
244 void (*pcm_play_stop)(void); 244 void (*pcm_play_stop)(void);
245 void (*pcm_set_frequency)(unsigned int frequency); 245 void (*pcm_set_frequency)(unsigned int frequency);
246 bool (*pcm_is_playing)(void); 246 bool (*pcm_is_playing)(void);
@@ -326,6 +326,8 @@ struct codec_api {
326#ifdef ROCKBOX_HAS_LOGF 326#ifdef ROCKBOX_HAS_LOGF
327 void (*logf)(const char *fmt, ...); 327 void (*logf)(const char *fmt, ...);
328#endif 328#endif
329
330 void *(*memchr)(const void *s1, int c, size_t n);
329}; 331};
330 332
331/* defined by the codec loader (codec.c) */ 333/* defined by the codec loader (codec.c) */