summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-06-12 23:06:31 +0200
committerJohn Glover <j@johnglover.net>2013-06-12 23:06:31 +0200
commita06d3352a08deab4175b571cdc51d3ef3fc74f36 (patch)
treea4bbea518eb37934838a1fb278ee3a9c682698f6 /src
parent5fa3a7b126c169bd5c3607cbbd503b002093e2ca (diff)
downloadsimpl-a06d3352a08deab4175b571cdc51d3ef3fc74f36.tar.gz
simpl-a06d3352a08deab4175b571cdc51d3ef3fc74f36.tar.bz2
simpl-a06d3352a08deab4175b571cdc51d3ef3fc74f36.zip
Make Frame objects able to accept a single hop-size buffer of audio. Samples are rotated internally.
Diffstat (limited to 'src')
-rw-r--r--src/simpl/base.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index d56cdd3..6671b53 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -357,13 +357,18 @@ void Frame::audio(sample* new_audio, int size) {
throw Exception(std::string("Memory not managed by Frame."));
}
- // copy size should also be less than or equal to the current frame size
- if(size > _size) {
- throw Exception(std::string("Specified copy size is too large, "
- "it must be less than the Frame size."));
+ if((size < _size) && (_size % size == 0)) {
+ std::rotate(_audio, _audio + size, _audio + _size);
+ std::copy(new_audio, new_audio + size, _audio + (_size - size));
+ }
+ else if(size == _size) {
+ std::copy(new_audio, new_audio + size, _audio);
+ }
+ else {
+ printf("size: %d (%d)\n", size, _size);
+ throw Exception(std::string("Specified copy size must be a multiple "
+ "of the current Frame size."));
}
-
- memcpy(_audio, new_audio, sizeof(sample) * size);
}
sample* Frame::audio() {