mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +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
|
// called tens of times per second
|
||||||
// TODO: Figure out what opcode 52 is
|
// TODO: Figure out what opcode 52 is
|
||||||
if ((is_dispatch && (opcode == effEditIdle || opcode == 52)) ||
|
if ((is_dispatch && (opcode == effEditIdle || opcode == 52)) ||
|
||||||
(!is_dispatch && opcode == audioMasterGetTime)) {
|
(!is_dispatch && (opcode == audioMasterGetTime ||
|
||||||
|
opcode == audioMasterGetCurrentProcessLevel))) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user