13
0

fix input metering when not rolling but using h/w monitoring: need to explicitly run meter in this case, since we are otherwise just passing silence

This commit is contained in:
Paul Davis 2013-03-30 00:14:33 -04:00
parent 9fc7eb1f0d
commit 757f223714

View File

@ -404,6 +404,11 @@ Track::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
if (be_silent) {
if (_meter_point == MeterInput) {
/* still need input monitoring */
_input->process_input (_meter, start_frame, end_frame, nframes);
}
passthru_silence (start_frame, end_frame, nframes, 0);
} else {