From ee088c0ece15ffdb83fa0fa5da0fc9fbe5e2962f Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 12 Aug 2020 15:53:27 +0200 Subject: [PATCH] Audio: fixed JACK transport Put frame is done later in pipeline and should not have been done here. --- src/audio/audio.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/audio/audio.cpp b/src/audio/audio.cpp index 98860dd22..45b4bfed1 100644 --- a/src/audio/audio.cpp +++ b/src/audio/audio.cpp @@ -717,7 +717,6 @@ static void *audio_receiver_thread(void *arg) }else { /* NET_JACK */ #ifdef HAVE_JACK_TRANS decoded = jack_receive(s->jack_connection, &jack_pbuf); - audio_playback_put_frame(s->audio_playback_device, &jack_pbuf.buffer); #endif }