summaryrefslogtreecommitdiffstats
path: root/src/engine/AudioBuffer.cpp
diff options
context:
space:
mode:
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