summaryrefslogtreecommitdiff
path: root/tran/abs.alg
blob: 2c139e687b7f1b29995f254ac8164d09c50c8adc (plain)
1
2
3
4
5
6
7
8
9
(ABS-ALG
  (NAME "abs")
  (ARGUMENTS ("sound_type" "input"))
  (ALWAYS-SCALE input)
  (START (MIN input))
  (INNER-LOOP "{ sample_type s = input; sample_type o = s; if (o < 0.0) o = -o; output = o; }")
  (TERMINATE (MIN input))
  (LOGICAL-STOP (MIN input))
)