From: DL1YCF Date: Sat, 10 Oct 2020 13:14:17 +0000 (+0200) Subject: Removed audio_open_output from create_receiver since local audio X-Git-Url: https://git.rkrishnan.org/pf/frontends/somewhere?a=commitdiff_plain;h=b12ccc7b473938cb8a35bec623d2fa8a4adf9c9d;p=pihpsdr.git Removed audio_open_output from create_receiver since local audio options are not yet set when calling create_receiver. --- 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; }