summaryrefslogtreecommitdiff
path: root/scripts/amp4.lua
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-12 15:21:23 +0200
committerRobin Gareus <robin@gareus.org>2016-07-12 16:43:10 +0200
commit4866106bcc488a1e85a78220652c486d37bb74d7 (patch)
treef6d54c4fe82c719bb2d3586635560fd8e003f158 /scripts/amp4.lua
parent53274c5baef194e14850757ab623c40d8217ebd7 (diff)
re-classify bundled lua scripts
* search by author: - "Ardour Team" for "ready to use" plugins - "Ardour Lua Task Force" = example plugins * search by Category - use "Example" for DSP plugins (except instruments)
Diffstat (limited to 'scripts/amp4.lua')
-rw-r--r--scripts/amp4.lua8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/amp4.lua b/scripts/amp4.lua
index 1fc8773592..24a838c9cb 100644
--- a/scripts/amp4.lua
+++ b/scripts/amp4.lua
@@ -3,9 +3,7 @@ ardour {
name = "Amplifier",
category = "Amplifier",
license = "MIT",
- author = "Robin Gareus",
- email = "robin@gareus.org",
- site = "http://gareus.org",
+ author = "Ardour Team",
description = [[Versatile +/- 20dB multichannel amplifier]]
}
@@ -78,14 +76,17 @@ function dsp_run (ins, outs, n_samples)
off = off + siz
end
+--[[
if changed then
self:queue_draw () -- notify display
end
+--]]
end
-------------------------------------------------------------------------------
--- inline display + text example
+--[[
local txt = nil -- cache pango context globally
function render_inline (ctx, w, max_h)
@@ -115,3 +116,4 @@ function render_inline (ctx, w, max_h)
return {w, h}
end
+--]]