From ac8cc68a0e075ccc3b39d7c0688b81ba6c6f3766 Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 26 May 2021 16:37:59 +0200 Subject: [PATCH] Renamed PortAudio stream handle to "playstream" --- receiver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/receiver.h b/receiver.h index 8509a69..04207e5 100644 --- a/receiver.h +++ b/receiver.h @@ -122,7 +122,7 @@ typedef struct _receiver { gint audio_device; gchar *audio_name; #ifdef PORTAUDIO - PaStream *playback_handle; + PaStream *playstream; gint local_audio_buffer_inpt; // pointer in audio ring-buffer gint local_audio_buffer_outpt; // pointer in audio ring-buffer float *local_audio_buffer; @@ -135,7 +135,7 @@ typedef struct _receiver { gint local_audio_cw; // flag for latency switching #endif #ifdef PULSEAUDIO - pa_simple *playback_handle; + pa_simple *playstream; gboolean output_started; float *local_audio_buffer; #endif -- 2.45.2