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
I am building UWP C++ app (Release x64) and I get access violation issue when I try to add an audio track to peer connection.
This is the code I am using (similar to the official example).
auto audioSrc = g_peer_connection_factory->CreateAudioSource(cricket::AudioOptions()); auto audioTrack = g_peer_connection_factory->CreateAudioTrack(kAudioLabel, audioSrc); auto ret = peer_connection_->AddTrack(audioTrack, { kStreamId });
I allowed app the to use both microphone and webcam.
Does anyone know why this issue happens?
Sometimes instead of access violation, I get "An invalid parameter was passed to a function that considers invalid parameters fatal"
The text was updated successfully, but these errors were encountered:
mluketin
changed the title
Access violation when adding a track to a peer connection
Access violation when adding an audio track to a peer connection
Jul 13, 2021
I am building UWP C++ app (Release x64) and I get access violation issue when I try to add an audio track to peer connection.
This is the code I am using (similar to the official example).
auto audioSrc = g_peer_connection_factory->CreateAudioSource(cricket::AudioOptions());
auto audioTrack = g_peer_connection_factory->CreateAudioTrack(kAudioLabel, audioSrc);
auto ret = peer_connection_->AddTrack(audioTrack, { kStreamId });
I allowed app the to use both microphone and webcam.
Does anyone know why this issue happens?
Sometimes instead of access violation, I get "An invalid parameter was passed to a function that considers invalid parameters fatal"
The text was updated successfully, but these errors were encountered: