13
0

fix pre-fader insert mute.

This commit is contained in:
Robin Gareus 2015-07-15 16:53:29 +02:00
parent b7b1f9a0a6
commit 42bfc63d7a
3 changed files with 10 additions and 1 deletions

View File

@ -64,6 +64,8 @@ class LIBARDOUR_API PortInsert : public IOProcessor
void activate ();
void deactivate ();
void set_pre_fader (bool);
uint32_t bit_slot() const { return _bitslot; }
void start_latency_detection ();

View File

@ -107,7 +107,7 @@ class LIBARDOUR_API Processor : public SessionObject, public Automatable, public
XMLNode& get_state (void);
int set_state (const XMLNode&, int version);
void set_pre_fader (bool);
virtual void set_pre_fader (bool);
PBD::Signal0<void> ActiveChanged;
PBD::Signal2<void,ChanCount,ChanCount> ConfigurationChanged;

View File

@ -59,6 +59,13 @@ PortInsert::~PortInsert ()
delete _mtdm;
}
void
PortInsert::set_pre_fader (bool p)
{
Processor::set_pre_fader (p);
_out->set_pre_fader (p);
}
void
PortInsert::start_latency_detection ()
{