diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2005-06-26 19:41:29 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-06-26 19:41:29 +0000 |
commit | d8cb703b1e86c9f910211a976d8bed0c7a99379a (patch) | |
tree | 6db3b698d83e639974bd6603225ff11891652113 /apps/codecs.h | |
parent | 316eb6538e2fc88efa93248deb761679071409f1 (diff) |
Initial DSP implementation. DSP supports resampling audio stream from
codecs (currently works corrently only with mp3's, somebody should fix
that).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6877 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.h')
-rw-r--r-- | apps/codecs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/codecs.h b/apps/codecs.h index e322d758e1..c373bdb8ba 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -143,6 +143,7 @@ struct codec_api { /* Insert PCM data into audio buffer for playback. Playback will start automatically. */ bool (*audiobuffer_insert)(char *data, size_t length); + bool (*audiobuffer_insert_split)(void *ch1, void *ch2, size_t length); /* Set song position in WPS (value in ms). */ void (*set_elapsed)(unsigned int value); |