shithub: soundpipe

ref: 7de74a9d01cbb87b74def34099ce2f30a0fb6e6e
dir: /modules/data/jcrev.lua/

View raw version
sptbl["jcrev"] = {

    files = {
        module = "jcrev.c",
        header = "jcrev.h",
        example = "ex_jcrev.c",
    },

    func = {
        create = "sp_jcrev_create",
        destroy = "sp_jcrev_destroy",
        init = "sp_jcrev_init",
        compute = "sp_jcrev_compute",
    },

    params = {
    },

    modtype = "module",

    description = [[John Chowning reverberator

    This is was built using the JC reverb implentation found in FAUST. According to the source code, the specifications for
this implementation were found on an old SAIL DART backup tape.

  This class is derived from the CLM JCRev function, which is based on the use of
  networks of simple allpass and comb delay filters.  This class implements three series
  allpass units, followed by four parallel comb filters, and two decorrelation delay lines in
  parallel at the output.]],

    ninputs = 1,
    noutputs = 1,

    inputs = {
        {
            name = "input",
            description = "Signal input."
        },
    },

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

}