Alexandre Bique
Alexandre Bique
This is wrong, some device only support 24 bit sample types. For example Hercules DJ control inpulse 500.
Why not fix tcc instead?
It is probably a similar effort to fix tcc and add the old school header guard. I'm against the old header guard.
It must not be difficult, open tcc source code, find the preprocessor, it must have a hash table somewhere: macro name to definition, then just put next to it a...
One thing that I'm wondering is if the plugin needs to be able to specify a minimum requirement for html, css, javascript ? Or this is better done within the...
> @abique For the starting URI length, can we somehow fix the capacity at `CLAP_PATH_SIZE`? That seems long enough, gives more consistency from hosts, and avoids an extra method in...
Ah you said that chrome has a max. Then we could go this way I suppose.
The max URL size isn't set in stone in browser. The approach I suggested is maybe a bit boring to impl and use, but it has the advantage that we...
If you have just one method ```C int32_t (CLAP_ABI *get_uri)(const clap_plugin_t *plugin, char *uri, uint32_t uri_capacity); ``` Which always returns the URI length, then you're good. If the returned value...
> So if the host provides a buffer that's too small, should the plugin return the size we _wants_ the URI, not the actual size it's returning? Yes. URI: 64...