Skip to content
Snippets Groups Projects
Commit c7b08ada authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #9847: audiolayer: fixed typo

parent efbf5e75
Branches
Tags
No related merge requests found
...@@ -647,7 +647,7 @@ void AlsaLayer::audioCallback() ...@@ -647,7 +647,7 @@ void AlsaLayer::audioCallback()
if (!playbackHandle_ or !captureHandle_) if (!playbackHandle_ or !captureHandle_)
return; return;
notifyincomingCall(); notifyIncomingCall();
snd_pcm_wait(playbackHandle_, 20); snd_pcm_wait(playbackHandle_, 20);
......
...@@ -86,7 +86,7 @@ void AudioLayer::applyGain(SFLDataFormat *src , int samples, int gain) ...@@ -86,7 +86,7 @@ void AudioLayer::applyGain(SFLDataFormat *src , int samples, int gain)
} }
// Notify (with a beep) an incoming call when there is already a call in progress // Notify (with a beep) an incoming call when there is already a call in progress
void AudioLayer::notifyincomingCall() void AudioLayer::notifyIncomingCall()
{ {
if (!Manager::instance().incomingCallWaiting()) if (!Manager::instance().incomingCallWaiting())
return; return;
......
...@@ -171,7 +171,7 @@ class AudioLayer { ...@@ -171,7 +171,7 @@ class AudioLayer {
/** /**
* Emit an audio notification on incoming calls * Emit an audio notification on incoming calls
*/ */
void notifyincomingCall(); void notifyIncomingCall();
/** /**
* Gain applied to mic signal * Gain applied to mic signal
......
...@@ -315,7 +315,7 @@ void PulseLayer::writeToSpeaker() ...@@ -315,7 +315,7 @@ void PulseLayer::writeToSpeaker()
size_t bytes = writable; size_t bytes = writable;
void *data; void *data;
notifyincomingCall(); notifyIncomingCall();
size_t urgentBytes = urgentRingBuffer_.AvailForGet(MainBuffer::DEFAULT_ID); size_t urgentBytes = urgentRingBuffer_.AvailForGet(MainBuffer::DEFAULT_ID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment