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<_>>
The text was updated successfully, but these errors were encountered:
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, wheresplit()
would give you aCaptureProcessor
and aRenderProcessor
. 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 anArc<Mutex<_>>
The text was updated successfully, but these errors were encountered: