From a06d3352a08deab4175b571cdc51d3ef3fc74f36 Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 12 Jun 2013 23:06:31 +0200 Subject: Make Frame objects able to accept a single hop-size buffer of audio. Samples are rotated internally. --- src/simpl/base.cpp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'src') 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() { -- cgit v1.2.3