Fix build for those without GStreamer

This commit is contained in:
trilene 2020-09-25 11:10:45 -04:00
parent 3f73853e4b
commit aab6cb88a5
1 changed files with 7 additions and 1 deletions

View File

@ -790,7 +790,13 @@ WebRTCSession::createPipeline(int)
}
bool
WebRTCSession::toggleMuteAudioSource()
WebRTCSession::isMicMuted() const
{
return false;
}
bool
WebRTCSession::toggleMicMute()
{
return false;
}