summaryrefslogtreecommitdiff
path: root/apps/codecs.h
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2005-08-20 11:13:19 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2005-08-20 11:13:19 +0000
commit159c52dd36e5c008612458192904f57ea6dfdfad (patch)
tree4b6f7d8329069e90d72284ef73ba542d75705b55 /apps/codecs.h
parent329caa8ade0b78a3235e9d28983cb1c506e573a0 (diff)
downloadrockbox-159c52dd36e5c008612458192904f57ea6dfdfad.tar.gz
rockbox-159c52dd36e5c008612458192904f57ea6dfdfad.zip
Initial voice ui support for software codec platforms. Added also a
beep when changing tracks. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7360 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.h')
-rw-r--r--apps/codecs.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index b2cf9e5a1e..3b8e1d8394 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -331,8 +331,9 @@ struct codec_api {
331 331
332/* defined by the codec loader (codec.c) */ 332/* defined by the codec loader (codec.c) */
333#if CONFIG_HWCODEC == MASNONE 333#if CONFIG_HWCODEC == MASNONE
334int codec_load_ram(char* codecptr, int size, void* ptr2, int bufwrap); 334int codec_load_ram(char* codecptr, int size, void* ptr2, int bufwrap,
335int codec_load_file(const char* codec); 335 struct codec_api *api);
336int codec_load_file(const char* codec, struct codec_api *api);
336#endif 337#endif
337 338
338/* defined by the codec */ 339/* defined by the codec */