mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Print the tempo part of VstTimeInfo
At debug level 2. This was needed to debug an issue with Renoise.
This commit is contained in:
@@ -75,6 +75,9 @@ TODO: Add an updated screenshot with some fancy VST3-only plugins to the readme
|
||||
priority. This should get rid of any latency spikes during those operations,
|
||||
as this could otherwise steal resources away from the threads that are
|
||||
processing audio.
|
||||
- When `YABRIDGE_DEBUG_LEVEL` is set to 2 or higher and a plugin asks the host
|
||||
for the current position in the song, yabridge will now also print the current
|
||||
tempo to help debugging host bugs.
|
||||
- Changed part of the build process considering [this Wine
|
||||
bug](https://bugs.winehq.org/show_bug.cgi?id=49138). Building with Wine 5.7
|
||||
and 5.8 required a change, but that change now breaks builds using Wine 6.0
|
||||
|
||||
@@ -504,7 +504,8 @@ void Vst2Logger::log_event_response(
|
||||
},
|
||||
[&](const VstTimeInfo& info) {
|
||||
message << ", <"
|
||||
<< "quarter_notes = " << info.ppqPos
|
||||
<< "tempo = " << info.tempo << " bpm"
|
||||
<< ", quarter_notes = " << info.ppqPos
|
||||
<< ", samples = " << info.samplePos << ">";
|
||||
}},
|
||||
payload);
|
||||
|
||||
Reference in New Issue
Block a user