1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-10 22:21:08 +02:00
2015-04-07 22:10:17 -05:00

14 lines
514 B
Plaintext

(INSTRSITAR-ALG
(NAME "sitar")
(ARGUMENTS ("time_type" "t0") ("double" "freq") ("time_type" "dur")
("rate_type" "sr"))
(STATE ("struct instr *" "mysitar" "initInstrument(SITAR, round(sr))")
("int" "temp_ret_value" "noteOn(susp->mysitar, freq, 1.0)"))
(NOT-IN-INNER-LOOP "freq" "temp_ret_value")
(SAMPLE-RATE "sr")
(TERMINATE (after "dur"))
(INNER-LOOP "output = (sample_type) tick(mysitar)")
(SUPPORT-FUNCTIONS "#include \"instr.h\"\n")
(FINALIZATION " deleteInstrument(susp->mysitar);\n")
)