diff options
Diffstat (limited to 'apps/codecs.h')
-rw-r--r-- | apps/codecs.h | 4 |
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 { #endif #if CONFIG_HWCODEC == MASNONE void (*pcm_play_data)(const unsigned char *start, int size, - void (*get_more)(unsigned char** start, long*size)); + void (*get_more)(unsigned char** start, long*size)); void (*pcm_play_stop)(void); void (*pcm_set_frequency)(unsigned int frequency); bool (*pcm_is_playing)(void); @@ -326,6 +326,8 @@ struct codec_api { #ifdef ROCKBOX_HAS_LOGF void (*logf)(const char *fmt, ...); #endif + + void *(*memchr)(const void *s1, int c, size_t n); }; /* defined by the codec loader (codec.c) */ |