mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
fix pre-fader insert mute.
This commit is contained in:
parent
b7b1f9a0a6
commit
42bfc63d7a
3 changed files with 10 additions and 1 deletions
|
|
@ -64,6 +64,8 @@ class LIBARDOUR_API PortInsert : public IOProcessor
|
||||||
void activate ();
|
void activate ();
|
||||||
void deactivate ();
|
void deactivate ();
|
||||||
|
|
||||||
|
void set_pre_fader (bool);
|
||||||
|
|
||||||
uint32_t bit_slot() const { return _bitslot; }
|
uint32_t bit_slot() const { return _bitslot; }
|
||||||
|
|
||||||
void start_latency_detection ();
|
void start_latency_detection ();
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ class LIBARDOUR_API Processor : public SessionObject, public Automatable, public
|
||||||
XMLNode& get_state (void);
|
XMLNode& get_state (void);
|
||||||
int set_state (const XMLNode&, int version);
|
int set_state (const XMLNode&, int version);
|
||||||
|
|
||||||
void set_pre_fader (bool);
|
virtual void set_pre_fader (bool);
|
||||||
|
|
||||||
PBD::Signal0<void> ActiveChanged;
|
PBD::Signal0<void> ActiveChanged;
|
||||||
PBD::Signal2<void,ChanCount,ChanCount> ConfigurationChanged;
|
PBD::Signal2<void,ChanCount,ChanCount> ConfigurationChanged;
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,13 @@ PortInsert::~PortInsert ()
|
||||||
delete _mtdm;
|
delete _mtdm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
PortInsert::set_pre_fader (bool p)
|
||||||
|
{
|
||||||
|
Processor::set_pre_fader (p);
|
||||||
|
_out->set_pre_fader (p);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
PortInsert::start_latency_detection ()
|
PortInsert::start_latency_detection ()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue