-
Is it possible to use waveforms and noise generators from the high-level API? |
Beta Was this translation helpful? Give feedback.
Answered by
mackron
Aug 23, 2023
Replies: 1 comment
-
Yes. Initialize your The same applies for |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Oldes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. Initialize your
ma_noise
object and then usema_sound_init_from_data_source()
. Make sure yourma_noise
object stays alive for the life of thema_sound
object. Ama_noise
object is a data source which means you can use it with any function that takes ama_data_source*
.The same applies for
ma_waveform
.