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 trying to compile libSourcey with the WebRtc binaries on Visual Studio (Windows) .
After generating the project correctly on Cmake choosing WITH_WEBRTC and setting the correct includes, I try to compile the solution but these errors were found :
'RefCountReleaseStatus': is not a member of 'rtc'
'Release': unknown override specifier
rtc::scoped_refptr<AudioPacketModule> AudioPacketModule::Create()
{
rtc::scoped_refptr<AudioPacketModule> capture_module(
new rtc::RefCountedObject<AudioPacketModule>());
if (!capture_module->Initialize()) {
return nullptr;
}
return capture_module;
}
I guess that is an issue related with libSourcey and WebRTC versions, but I don't know how to solve it.
Any one could help me ?
The text was updated successfully, but these errors were encountered:
Edgar-Alarcon
changed the title
Error compiling libSourcey with WebRTC (Errors in AddRef and Release)
Error building libSourcey with WebRTC (Errors in AddRef and Release)
Aug 6, 2019
Hi,
I am trying to compile libSourcey with the WebRtc binaries on Visual Studio (Windows) .
After generating the project correctly on Cmake choosing WITH_WEBRTC and setting the correct includes, I try to compile the solution but these errors were found :
'RefCountReleaseStatus': is not a member of 'rtc'
'Release': unknown override specifier
These are the conflictive lines
Peer.h
audiopacketmodule.cpp
I guess that is an issue related with libSourcey and WebRTC versions, but I don't know how to solve it.
Any one could help me ?
The text was updated successfully, but these errors were encountered: