summaryrefslogtreecommitdiffstats
path: root/src/engine/AudioBuffer.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/engine/AudioBuffer.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/AudioBuffer.cpp')
-rw-r--r--src/engine/AudioBuffer.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/engine/AudioBuffer.cpp b/src/engine/AudioBuffer.cpp
index 17cfeca9..7b6b0a02 100644
--- a/src/engine/AudioBuffer.cpp
+++ b/src/engine/AudioBuffer.cpp
@@ -35,7 +35,6 @@ namespace Ingen {
using namespace Shared;
-
AudioBuffer::AudioBuffer(BufferFactory& bufs, Shared::PortType type, size_t size)
: ObjectBuffer(bufs, size)
, _state(OK)
@@ -70,7 +69,6 @@ AudioBuffer::AudioBuffer(BufferFactory& bufs, Shared::PortType type, size_t size
clear();
}
-
void
AudioBuffer::resize(size_t size)
{
@@ -81,7 +79,6 @@ AudioBuffer::resize(size_t size)
clear();
}
-
/** Empty (ie zero) the buffer.
*/
void
@@ -92,7 +89,6 @@ AudioBuffer::clear()
_state = OK;
}
-
/** Set value of buffer to @a val after @a start_sample.
*
* The Buffer will handle setting the intial portion of the buffer to the
@@ -122,7 +118,6 @@ AudioBuffer::set_value(Sample val, FrameTime cycle_start, FrameTime time)
_set_value = val;
}
-
/** Set a block of buffer to @a val.
*
* @a start_sample and @a end_sample define the inclusive range to be set.
@@ -140,7 +135,6 @@ AudioBuffer::set_block(Sample val, size_t start_offset, size_t end_offset)
buf[i] = val;
}
-
/** Copy a block of @a src into buffer.
*
* @a start_sample and @a end_sample define the inclusive range to be set.
@@ -160,7 +154,6 @@ AudioBuffer::copy(const Sample* src, size_t start_sample, size_t end_sample)
buf[i] = src[i];
}
-
void
AudioBuffer::copy(Context& context, const Buffer* src)
{
@@ -193,7 +186,6 @@ AudioBuffer::copy(Context& context, const Buffer* src)
}
}
-
void
AudioBuffer::prepare_read(Context& context)
{
@@ -212,5 +204,4 @@ AudioBuffer::prepare_read(Context& context)
}
}
-
} // namespace Ingen