clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit da9a0ae33f1f9f630ed29cb4a340711c0758ec29
parent c1a60c06241f788de1d6648802ed8f68a0e073c1
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue, 28 Jun 2022 13:38:24 +0200

Same for audio-ports

Diffstat:
Minclude/clap/ext/audio-ports.h | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/clap/ext/audio-ports.h b/include/clap/ext/audio-ports.h @@ -40,7 +40,9 @@ enum { }; typedef struct clap_audio_port_info { - clap_id id; // stable identifier + // id identifies a port and must be stable. + // id may overlap between input and output ports. + clap_id id; char name[CLAP_NAME_SIZE]; // displayable name uint32_t flags;