summaryrefslogtreecommitdiff
path: root/libs/ardour/io.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-16 19:37:36 +0200
committerRobin Gareus <robin@gareus.org>2013-07-16 19:37:36 +0200
commit2231db91cdeea8111961b3eeb94e2d87df6f9e8a (patch)
tree9eeb63065f1d070889ea33347498bc1e5c55cf9a /libs/ardour/io.cc
parentc456166dd163e12053c7cfd4554f695ab0d30b68 (diff)
fix metering states 34, 38, 49, 50, 53 and 54
for state descriptions see http://www.oofus.co.uk/ardour/Ardour3MonitorModesV3.pdf
Diffstat (limited to 'libs/ardour/io.cc')
-rw-r--r--libs/ardour/io.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index cdb8a4693c..21fdca6e96 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -1639,7 +1639,9 @@ IO::process_input (boost::shared_ptr<Processor> proc, framepos_t start_frame, fr
}
_buffers.get_jack_port_addresses (_ports, nframes);
- proc->run (_buffers, start_frame, end_frame, nframes, true);
+ if (proc) {
+ proc->run (_buffers, start_frame, end_frame, nframes, true);
+ }
}
void