>Well, theres no reason why you couldn't do it in LADSPA, its only a bunch
>of parameters after all, its just a bit too special case (IMHO) for
>the XML GUI.

the only way I can see this working is to add:

#define LADSPA_HINT_CURVE 0x40

and the convention that once a port like that is connected, it treats
the port as an array and does:

    size_t num_points = (size_t) floor (*port);
    size_t n;

    for (n = 1; n <= num_points; n++) {
        ... do something with port[n] ..
    }

but this seems ripe for disaster, somehow. even so, it would be pretty nice.

--p


Reply via email to