mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Also filter audioMasterGetCurrentProcessLevel
Some plugins call this every time they process audio.
This commit is contained in:
@@ -306,7 +306,8 @@ bool Logger::should_filter_event(bool is_dispatch, int opcode) {
|
||||
// called tens of times per second
|
||||
// TODO: Figure out what opcode 52 is
|
||||
if ((is_dispatch && (opcode == effEditIdle || opcode == 52)) ||
|
||||
(!is_dispatch && opcode == audioMasterGetTime)) {
|
||||
(!is_dispatch && (opcode == audioMasterGetTime ||
|
||||
opcode == audioMasterGetCurrentProcessLevel))) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user