Skip to content

Commit

Permalink
fix Linux compile (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
doesnotexist committed Oct 9, 2022
1 parent d13ff90 commit d84883e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/audio_device/linux/audio_device_pulse_linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ class AudioDeviceLinuxPulse : public AudioDeviceGeneric {

void AttachAudioBuffer(AudioDeviceBuffer* audioBuffer) override;

int32_t SetAudioDeviceSink(AudioDeviceSink* sink) override { return -1; }

private:
void Lock() RTC_EXCLUSIVE_LOCK_FUNCTION(mutex_) { mutex_.Lock(); }
void UnLock() RTC_UNLOCK_FUNCTION(mutex_) { mutex_.Unlock(); }
Expand Down

0 comments on commit d84883e

Please sign in to comment.