diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-11-18 17:12:19 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-11-18 17:12:19 +0000 |
| commit | 99617d71bad0e5870a38e37c8654e46868e2a5ba (patch) | |
| tree | e0ecc3b73e8e167c7f5bf00a6c88b83c1119aea3 /apps/codecs.c | |
| parent | 75432619e8be2f22f86ed0869d46bf7245c7c14d (diff) | |
| download | rockbox-99617d71bad0e5870a38e37c8654e46868e2a5ba.zip rockbox-99617d71bad0e5870a38e37c8654e46868e2a5ba.tar.gz rockbox-99617d71bad0e5870a38e37c8654e46868e2a5ba.tar.bz2 rockbox-99617d71bad0e5870a38e37c8654e46868e2a5ba.tar.xz | |
Make speex the new voice format for SWCODEC targets (non-Archos). Remove codec swapping and build speex voice decoding directly into the core binary.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15668 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.c')
| -rw-r--r-- | apps/codecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index 88ecd24..f2539dc 100644 --- a/apps/codecs.c +++ b/apps/codecs.c @@ -67,8 +67,6 @@ extern unsigned char codecbuf[]; extern void* plugin_get_audio_buffer(size_t *buffer_size); -struct codec_api ci_voice; - struct codec_api ci = { 0, /* filesize */ @@ -163,6 +161,8 @@ struct codec_api ci = { flush_icache, invalidate_icache, #endif + + NULL, /* struct sp_data *dsp */ }; void codec_get_full_path(char *path, const char *codec_root_fn) |