mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
reinstate input monitoring function
This commit is contained in:
parent
381d861a9c
commit
0c9a48550f
1 changed files with 7 additions and 2 deletions
|
|
@ -18,6 +18,7 @@
|
|||
#include "pbd/error.h"
|
||||
|
||||
#include "ardour/amp.h"
|
||||
#include "ardour/audioengine.h"
|
||||
#include "ardour/debug.h"
|
||||
#include "ardour/delivery.h"
|
||||
#include "ardour/disk_reader.h"
|
||||
|
|
@ -552,13 +553,17 @@ Track::playlist ()
|
|||
void
|
||||
Track::request_input_monitoring (bool m)
|
||||
{
|
||||
// XXX DISK
|
||||
for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end(); ++i) {
|
||||
AudioEngine::instance()->request_input_monitoring ((*i)->name(), m);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
Track::ensure_input_monitoring (bool m)
|
||||
{
|
||||
// XXX DISK
|
||||
for (PortSet::iterator i = _input->ports().begin(); i != _input->ports().end(); ++i) {
|
||||
AudioEngine::instance()->ensure_input_monitoring ((*i)->name(), m);
|
||||
}
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue