summaryrefslogtreecommitdiff
path: root/libs/ardour/audio_port.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-04-23 17:48:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-04-23 17:48:37 +0000
commit28368793415ba934132994d8c10a5e149c1a8d9d (patch)
tree818d5f406e0c9b6f95f43faae0ff88d885a59ad6 /libs/ardour/audio_port.cc
parent0a22716b74d52fcbef37bebf529048f7f3bc79e0 (diff)
remove offset from process callback tree. some breakage may have occured. yes, really.
git-svn-id: svn://localhost/ardour2/branches/3.0@4999 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/audio_port.cc')
-rw-r--r--libs/ardour/audio_port.cc54
1 files changed, 34 insertions, 20 deletions
diff --git a/libs/ardour/audio_port.cc b/libs/ardour/audio_port.cc
index c9d28dcb41..c62d31a6d0 100644
--- a/libs/ardour/audio_port.cc
+++ b/libs/ardour/audio_port.cc
@@ -27,7 +27,6 @@ using namespace std;
AudioPort::AudioPort (const std::string& name, Flags flags)
: Port (name, DataType::AUDIO, flags)
- , _buffer_data_set (false)
, _buffer (new AudioBuffer (0))
{
assert (name.find_first_of (':') == string::npos);
@@ -39,7 +38,7 @@ AudioPort::~AudioPort ()
}
void
-AudioPort::cycle_start (nframes_t nframes, nframes_t offset)
+AudioPort::cycle_start (nframes_t nframes)
{
/* caller must hold process lock */
@@ -50,36 +49,51 @@ AudioPort::cycle_start (nframes_t nframes, nframes_t offset)
happen when Port::get_buffer() is called.
*/
- if (sends_output() && !_buffer_data_set) {
-
- _buffer->set_data ((Sample *) jack_port_get_buffer (_jack_port, nframes) + offset, nframes);
- _buffer_data_set = true;
-
+ if (sends_output()) {
+
+ /* Notice that cycle_start() is always run with the *entire* process cycle frame count,
+ so we do not bother to apply _port_offset here - we always want the address of the
+ entire JACK port buffer. We are not collecting data here - just noting the
+ address where we will write data later in the process cycle.
+ */
+
+ _buffer->set_data ((Sample *) jack_port_get_buffer (_jack_port, nframes), nframes);
+ _buffer->prepare ();
}
+}
- if (receives_input()) {
- _buffer_data_set = false;
- } else {
- _buffer->silence (nframes, offset);
+void
+AudioPort::cycle_end (nframes_t nframes)
+{
+ if (sends_output() && !_buffer->written()) {
+ _buffer->silence (nframes);
}
}
-AudioBuffer &
+void
+AudioPort::cycle_split ()
+{
+}
+
+AudioBuffer&
AudioPort::get_audio_buffer (nframes_t nframes, nframes_t offset)
{
/* caller must hold process lock */
- if (receives_input () && !_buffer_data_set) {
+ if (receives_input ()) {
+
+ /* Get a pointer to the audio data @ offset + _port_offset within the JACK port buffer and store
+ it in our _buffer member.
- _buffer->set_data ((Sample *) jack_port_get_buffer (_jack_port, nframes) + offset, nframes);
-
+ Note that offset is expected to be zero in almost all cases.
+ */
+
+ _buffer->set_data ((Sample *) jack_port_get_buffer (_jack_port, nframes) + offset + _port_offset, nframes);
}
+ /* output ports set their _buffer data information during ::cycle_start()
+ */
+
return *_buffer;
}
-void
-AudioPort::cycle_end (nframes_t nframes, nframes_t offset)
-{
- _buffer_data_set = false;
-}