mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-25 05:17:25 +02:00
Filter out effProcessEvents on verbosity level 1
This commit is contained in:
@@ -8,6 +8,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- `effProcessEvents` VST2 calls are now filtered out from the log when
|
||||||
|
`YABRIDGE_DEBUG_LEVEL` is set to 1.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed an obscure issue with VST3 plugins crashing in **Ardour** on
|
- Fixed an obscure issue with VST3 plugins crashing in **Ardour** on
|
||||||
|
|||||||
@@ -557,7 +557,7 @@ bool Vst2Logger::should_filter_event(bool is_dispatch,
|
|||||||
// Filter out log messages related to these events by default since they are
|
// Filter out log messages related to these events by default since they are
|
||||||
// called tens of times per second
|
// called tens of times per second
|
||||||
if ((is_dispatch && (opcode == effEditIdle || opcode == effGetTailSize ||
|
if ((is_dispatch && (opcode == effEditIdle || opcode == effGetTailSize ||
|
||||||
opcode == effIdle)) ||
|
opcode == effIdle || opcode == effProcessEvents)) ||
|
||||||
(!is_dispatch && (opcode == audioMasterGetTime ||
|
(!is_dispatch && (opcode == audioMasterGetTime ||
|
||||||
opcode == audioMasterGetCurrentProcessLevel))) {
|
opcode == audioMasterGetCurrentProcessLevel))) {
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user