shithub: soundpipe

ref: 6f50522ff66bbebd9d899f71b6da71288c0a8d0d
dir: /modules/data/bltriangle.lua/

View raw version
sptbl["bltriangle"] = {

    files = {
        module = "bltriangle.c",
        header = "bltriangle.h",
        example = "ex_bltriangle.c",
    },

    func = {
        create = "sp_bltriangle_create",
        destroy = "sp_bltriangle_destroy",
        init = "sp_bltriangle_init",
        compute = "sp_bltriangle_compute",
    },

    params = {
        optional = {
            {
                name = "freq",
                type = "SPFLOAT*",
                description = "Frequency, (range 0-20000)",
                default = 440
            },
            {
                name = "amp",
                type = "SPFLOAT*",
                description ="Amplitude (range 0-1).",
		default = 1.0
            },
        }
    },

    modtype = "module",

    description = [[Bandlimited triangle oscillator
This is a bandlimited triangle oscillator ported from the "triangletooth" function from the Faust
programming language.
]],

    ninputs = 0,
    noutputs = 1,

    inputs = {
        {
            name = "dummy",
            description = "This doesn't do anything."
        },
    },

    outputs = {
        {
            name = "out",
            description = "Signal output."
        },
    }

}