make metering do the right thing if panner is bypassed

git-svn-id: svn://localhost/ardour2/branches/3.0@8927 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-02-22 20:49:21 +00:00
parent 13bf1fff6f
commit 333817557d

View File

@ -294,9 +294,6 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
_panshell->run (bufs, output_buffers(), start_frame, end_frame, nframes);
if (result_required) {
bufs.read_from (output_buffers (), nframes);
}
} else {
@ -311,6 +308,10 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
}
}
if (result_required) {
bufs.read_from (output_buffers (), nframes);
}
out:
_active = _pending_active;
}