-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLAP 1.1.9 #325
CLAP 1.1.9 #325
Conversation
GUI extension: !floating tag
Co-authored-by: Robbert van der Helm <[email protected]>
Co-authored-by: Trinitou <[email protected]>
Fix C++ version checking on MSVC
Fix typo
Fix various typos
Initial take on undo support
Introduce incremental state
using the same wording as in tail extension to clarify details.
clarify latency is defined in samples
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few small comments reading this morning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I proposed some small changes concerning ambisonic here: #355
Co-authored-by: Trinitou <[email protected]>
Clarify ambisonic enums
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay by me!
@@ -42,12 +42,16 @@ typedef struct clap_plugin_audio_ports_activation { | |||
// It is only possible to activate and de-activate on the audio-thread if | |||
// can_activate_while_processing() returns true. | |||
// | |||
// sample_size indicate if the host will provide 32 bit audio buffers or 64 bits one. | |||
// Possible values are: 32, 64 or 0 if unspecified. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reasoning behind 0 = unspecified?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is when this could dynamically change without deactivating the plugin, for example if there are multiple sources and a switch.
ABI (Application Binary Interface), can be a confusing term for people who stumble over it. What we want to achieve is to let people know that the interface is stable and backwards compatible.
README: Re-phrase the mentioning of ABI
LGTM! |
No description provided.