SPC Codec: Run SPC emulation on COP and audio sample processing on CPU on dual-core PortalPlayer targets.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15673 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2007-11-18 19:03:45 +00:00
parent 984a6b0236
commit 1a41c8afee
5 changed files with 552 additions and 128 deletions

View file

@ -162,7 +162,19 @@ struct codec_api ci = {
invalidate_icache,
#endif
NULL, /* struct sp_data *dsp */
NULL, /* struct dsp_config *dsp */
#if NUM_CORES > 1
create_thread,
thread_thaw,
thread_wait,
semaphore_init,
semaphore_wait,
semaphore_release,
event_init,
event_wait,
event_set_state,
#endif
};
void codec_get_full_path(char *path, const char *codec_root_fn)