Introduce a macro for imprecise configurations
[ardour.git] / libs / ardour / audio_port.cc
index 0e48c2a69960200fb16f3b228f3dc63d17e7b892..33e41c10ad49cc309615af9d4778e0d5d426b610 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2006 Paul Davis 
+    Copyright (C) 2006 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 */
 
 #include <cassert>
-#include <ardour/audio_port.h>
-#include <ardour/audioengine.h>
-#include <ardour/data_type.h>
-#include <ardour/audio_buffer.h>
+
+#include "pbd/stacktrace.h"
+
+#include "ardour/audio_buffer.h"
+#include "ardour/audioengine.h"
+#include "ardour/audio_port.h"
+#include "ardour/data_type.h"
+#include "ardour/port_engine.h"
 
 using namespace ARDOUR;
 using namespace std;
 
-AudioPort::AudioPort (const std::string& name, Flags flags, bool ext, nframes_t capacity)
-       : Port (name, DataType::AUDIO, flags, ext)
-       , _has_been_mixed_down (false)
-       , _buffer (0)
-       , _internal_buffer (false)
+#define port_engine AudioEngine::instance()->port_engine()
+
+AudioPort::AudioPort (const std::string& name, PortFlags flags)
+       : Port (name, DataType::AUDIO, flags)
+       , _buffer (new AudioBuffer (0))
 {
        assert (name.find_first_of (':') == string::npos);
-
-       if (external ()) {
-               
-               /* external ports use the external port buffer */
-               _buffer = new AudioBuffer (0);
-
-       } else {
-
-               /* internal ports need their own buffers */
-               _buffer = new AudioBuffer (capacity);
-       }
-
-       check_buffer_status ();
-       
 }
 
-AudioPort::~AudioPort()
+AudioPort::~AudioPort ()
 {
        delete _buffer;
 }
 
 void
-AudioPort::cycle_start (nframes_t nframes, nframes_t offset)
+AudioPort::cycle_start (pframes_t nframes)
 {
        /* caller must hold process lock */
 
-       /* For external (JACK) ports, get_buffer() must only be run 
-          on outputs here in cycle_start().
-
-          Inputs must be done in the correct processing order, which 
-          requires interleaving with route processing. that will 
-          happen when Port::get_buffer() is called.
-       */
-       
-       if (!receives_input() && external ()) {
-               _buffer->set_data ((Sample *) jack_port_get_buffer (_jack_port, nframes) + offset, nframes);
-       }
+        Port::cycle_start (nframes);
 
-       if (receives_input()) {
-               _has_been_mixed_down = false;
-       } else {
-               _buffer->silence (nframes, offset);
+       if (sends_output()) {
+               _buffer->prepare ();
        }
 }
 
-AudioBuffer &
-AudioPort::get_audio_buffer (nframes_t nframes, nframes_t offset)
-{
-       /* caller must hold process lock */
-
-       if (receives_input () && !_has_been_mixed_down) {
-
-               /* external ports use JACK's memory unless otherwise noted */
-               
-               if (external()) {
-                       if (!using_internal_data()) {
-                               _buffer->set_data ((Sample *) jack_port_get_buffer (_jack_port, nframes) + offset, nframes);
-                       } else {
-                               _buffer->silence (nframes, offset);
-                       }
-               }
-
-               mixdown (nframes, offset, !external ());
-       } 
-       
-       return *_buffer;
-}
-
-void
-AudioPort::cycle_end (nframes_t nframes, nframes_t offset)
-{
-       _has_been_mixed_down = false;
-}
-
 void
-AudioPort::mixdown (nframes_t cnt, nframes_t offset, bool first_overwrite)
+AudioPort::cycle_end (pframes_t nframes)
 {
-       /* note: this is only called for input ports */
-
-       if (_connections.empty()) {
-
-               /* no internal mixing to do, so for internal ports
-                  just make sure the buffer is silent.
-               */
-               
-               if (!external()) {
-                       _buffer->silence (cnt, offset);
-               } 
-
-       } else {
-
-               set<Port*>::const_iterator p = _connections.begin();
-
-               /* mix in internally-connected ports. if this is an external port
-                  then it may already have data present from JACK. in that case, we 
-                  do not want to overwrite that data, so we skip the initial ::read_from()
-                  call and do everything with accumulate_from()
-                */
-
-               if (!external()) {
-                       _buffer->read_from (dynamic_cast<AudioPort*>(*p)->get_audio_buffer (cnt, offset), cnt, offset);
-                       ++p;
-                       
+        if (sends_output() && !_buffer->written()) {
+               if (!_buffer->data (0)) {
+                       get_audio_buffer (nframes);
+               }
+               if (_buffer->capacity() >= nframes) {
+                       _buffer->silence (nframes);
                }
-
-               for (; p != _connections.end (); ++p) {
-                       _buffer->accumulate_from (dynamic_cast<AudioPort*>(*p)->get_audio_buffer (cnt, offset), cnt, offset);
-
-               }
-       }
-
-       /* XXX horrible heuristic designed to check that we worked the whole buffer.
-          Needs fixing but its a hard problem.
-       */
-
-       if (cnt && offset == 0) {
-               _has_been_mixed_down = true;
        }
 }
 
 void
-AudioPort::reset ()
+AudioPort::cycle_split ()
 {
-       Port::reset ();
-       
-       if (_buffer->capacity () != 0) {
-               _buffer->resize (_engine->frames_per_cycle ());
-               _buffer->clear ();
-       }
 }
 
-bool
-AudioPort::using_internal_data () const
+AudioBuffer&
+AudioPort::get_audio_buffer (pframes_t nframes)
 {
-       return _internal_buffer;
+       /* caller must hold process lock */
+       _buffer->set_data ((Sample *) port_engine.get_buffer (_port_handle, _cycle_nframes) +
+                          _global_port_buffer_offset + _port_buffer_offset, nframes);
+       return *_buffer;
 }
 
-void
-AudioPort::use_internal_data ()
+Sample*
+AudioPort::engine_get_whole_audio_buffer ()
 {
-       _buffer->replace_data (_buffer->capacity());
-       _internal_buffer = true;
+       /* caller must hold process lock */
+       return (Sample *) port_engine.get_buffer (_port_handle, _cycle_nframes);
 }
 
-void
-AudioPort::use_external_data ()
-{
-       _internal_buffer = false;
-       _buffer->drop_data ();
-}
+
+
+