1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Miika Pekkarinen 2005-08-20 11:13:19 +00:00
parent 329caa8ade
commit 159c52dd36
17 changed files with 774 additions and 230 deletions

View file

@ -331,8 +331,9 @@ struct codec_api {
/* defined by the codec loader (codec.c) */
#if CONFIG_HWCODEC == MASNONE
int codec_load_ram(char* codecptr, int size, void* ptr2, int bufwrap);
int codec_load_file(const char* codec);
int codec_load_ram(char* codecptr, int size, void* ptr2, int bufwrap,
struct codec_api *api);
int codec_load_file(const char* codec, struct codec_api *api);
#endif
/* defined by the codec */