diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-12-06 08:34:55 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-12-06 08:34:55 +0000 |
| commit | 51189b4cb41fb70f4800286f99573f590941ddea (patch) | |
| tree | 09ca4c9ee4f2ade25e811e5a1f9018a7814c78b3 /apps/plugin.c | |
| parent | 1ff7652adf206eec517ae3236d02a5be9324942a (diff) | |
| download | rockbox-51189b4cb41fb70f4800286f99573f590941ddea.zip rockbox-51189b4cb41fb70f4800286f99573f590941ddea.tar.gz rockbox-51189b4cb41fb70f4800286f99573f590941ddea.tar.bz2 rockbox-51189b4cb41fb70f4800286f99573f590941ddea.tar.xz | |
Small change to PCM recording API for low latency effects. Latency can be as low as 14 samples from input to output including the FIFOs (ColdFire) but 16 is more reasonable an expectation if only tranferring one sample per interrupt (\!). May convert PCM playback to use the same method as it can still be used in the old manner with some slight mods but has the potential to enable new features since it is more flexible.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11668 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 268fee5..b129493 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -482,6 +482,7 @@ static const struct plugin_api rockbox_api = { #if CONFIG_CODEC == SWCODEC && defined(HAVE_RECORDING) && !defined(SIMULATOR) sound_default, + pcm_record_more, #endif }; |