mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-12 20:27:53 +00:00
[client] audio: display record indicator when necessary
This commit is contained in:
parent
9c8a8a1b44
commit
e053c014f7
1 changed files with 6 additions and 0 deletions
|
@ -758,6 +758,9 @@ static void realRecordStart(int channels, int sampleRate, PSAudioFormat format)
|
|||
// set the inital mute state
|
||||
if (audio.audioDev->record.mute)
|
||||
audio.audioDev->record.mute(audio.playback.mute);
|
||||
|
||||
if (g_params.micShowIndicator)
|
||||
app_showRecord(true);
|
||||
}
|
||||
|
||||
struct AudioFormat
|
||||
|
@ -833,6 +836,9 @@ void audio_recordStop(void)
|
|||
DEBUG_INFO("Microphone recording stopped");
|
||||
audio.audioDev->record.stop();
|
||||
audio.record.started = false;
|
||||
|
||||
if (g_params.micShowIndicator)
|
||||
app_showRecord(false);
|
||||
}
|
||||
|
||||
void audio_recordVolume(int channels, const uint16_t volume[])
|
||||
|
|
Loading…
Reference in a new issue