Do not de-click during freewheel export
This commit is contained in:
parent
1f6686c2a0
commit
128a45954c
@ -1126,6 +1126,10 @@ public:
|
|||||||
return _exporting;
|
return _exporting;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool realtime_export() const {
|
||||||
|
return _realtime_export;
|
||||||
|
}
|
||||||
|
|
||||||
bool bounce_processing() const {
|
bool bounce_processing() const {
|
||||||
return _bounce_processing_active;
|
return _bounce_processing_active;
|
||||||
}
|
}
|
||||||
|
@ -283,7 +283,7 @@ DiskReader::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp
|
|||||||
const bool declicked_out = (_declick_amp.gain() == target_gain) && target_gain == 0.0;
|
const bool declicked_out = (_declick_amp.gain() == target_gain) && target_gain == 0.0;
|
||||||
const bool declick_out = (_declick_amp.gain() != target_gain) && target_gain == 0.0;
|
const bool declick_out = (_declick_amp.gain() != target_gain) && target_gain == 0.0;
|
||||||
|
|
||||||
if (!_session.cfg ()->get_use_transport_fades ()) {
|
if (!_session.cfg ()->get_use_transport_fades () || (_session.exporting () && ! _session.realtime_export ())) {
|
||||||
_declick_amp.set_gain (target_gain);
|
_declick_amp.set_gain (target_gain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user