From b12ccc7b473938cb8a35bec623d2fa8a4adf9c9d Mon Sep 17 00:00:00 2001 From: DL1YCF Date: Sat, 10 Oct 2020 15:14:17 +0200 Subject: [PATCH] Removed audio_open_output from create_receiver since local audio options are not yet set when calling create_receiver. --- receiver.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/receiver.c b/receiver.c index 3fd94e4..f4893e7 100644 --- a/receiver.c +++ b/receiver.c @@ -1156,10 +1156,13 @@ fprintf(stderr,"RXASetMP %d\n",rx->low_latency); create_visual(rx); +#if 0 +// now done in radio.c fprintf(stderr,"create_receiver: rx=%p id=%d local_audio=%d\n",rx,rx->id,rx->local_audio); if(rx->local_audio) { if (audio_open_output(rx) < 0) rx->local_audio=0; } +#endif return rx; } -- 2.45.2