Hello,
I am trying to create some options for the track output.
Let’s say that I have
Output 1 + 2 ( stereo L,R)
I use
te::AudioTrack* audiotrack = (te::AudioTrack*)track.get();
TrackOutput& to = audiotrack->getOutput();
to.setOutputByName("Output 1 + 2");
to.updateOutput();
and it works.
But if I want to set track output to “Output 1” or “Output 2” , how can I do?
Thanks!