You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to how tokio's TCP stream has a split function to give read and write halves, it would be nice to have the same for the audio processor, where split() would give you a CaptureProcessor and a RenderProcessor. This could make the API a little easier to use when you're not using a duplex audio stream, as then you wouldn't need to put the processor in an Arc<Mutex<_>>