amp.lua

--- Stereo Amplifier in Lua.
--
-- The code contained implements a simple stereo amplifier plugin. It does not
-- try to smooth the volume parameter and could cause zipper noise.
--
-- @script      amp
-- @type        DSP
-- @license     GPL v3
-- @author      Michael Fisher

local audio  = require ('el.audio')

--- Gain parameters.
-- Used for fading between changes in volume
local gain1 = 1.0
local gain2 = 1.0

--- Return a table of audio/midi inputs and outputs.
-- This plugin supports stereo in/out with no MIDI
local function amp_layout()
    return {
        audio = { 2, 2 },
        midi  = { 0, 0 }
    }
end

--- Return parameters table.
local function amp_parameters()
    return {
        {
            name        = "Volume",
            label       = "dB",
            min         = -90.0,
            max         = 24.0,
            default     = 0.0
        }
    }
end

--- Render audio and midi.
-- Use the provided audio and midi objects to process your plugin
-- @param a The source el.AudioBuffer
-- @param m The source el.MidiPipe
-- @param params DSP parameters
local function amp_process (a, m, params)
    gain2 = audio.togain (params [1])
    a:fade (gain1, gain2)
    gain1 = gain2
end

return {
    type        = 'DSP',
    layout      = amp_layout,
    parameters  = amp_parameters,
    process     = amp_process
}
generated by LDoc 1.5.0 Last updated 2023-07-24 14:15:49