-
1.Does full duplex mode support loopback and capture, I want to do mixer of microphone and windows OS sound |
Beta Was this translation helpful? Give feedback.
Answered by
mackron
May 25, 2023
Replies: 1 comment 1 reply
-
No, you would need to initialize two |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zhaokaixs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, you would need to initialize two
ma_device
objects - one for the loopback, and one for the microphone. You'll need to do the mixing yourself. Keep in mind that the data callbacks for each of the devices will be running on their own thread so you'll need to do your own synchronization and memory management when you do your mixing.