From 203c7b938a11996e755e3fcc6ea6ff8c4a41c220 Mon Sep 17 00:00:00 2001 From: DL1YCF Date: Tue, 18 May 2021 15:46:40 +0200 Subject: [PATCH] small correction to ALSA audio module --- audio.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/audio.c b/audio.c index a9bb39c..ff200fa 100644 --- a/audio.c +++ b/audio.c @@ -320,7 +320,7 @@ g_print("audio_close_input: free mic buffer\n"); // Note that when sending the buffer, delay "jumps" by the buffer size // -int cw_audio_write(float sample){ +int cw_audio_write(RECEIVER *rx, float sample){ snd_pcm_sframes_t delay; long rc; float *float_buffer; @@ -329,8 +329,6 @@ int cw_audio_write(float sample){ static int count=0; int short_audio_buffer_size; - RECEIVER *rx = active_receiver; - g_mutex_lock(&rx->local_audio_mutex); if(rx->playback_handle!=NULL && rx->local_audio_buffer!=NULL) { -- 2.45.2