From: Mike Brady Date: Fri, 9 Mar 2018 20:55:41 +0000 (+0000) Subject: Buggy calculation of initial silence. This fixes it, but don't know why. Yikes. X-Git-Tag: 3.2d29~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab75058bd191422a02ade094d086b0bb86a45b54;p=thirdparty%2Fshairport-sync.git Buggy calculation of initial silence. This fixes it, but don't know why. Yikes. --- diff --git a/player.c b/player.c index 693e5614..3128ad06 100644 --- a/player.c +++ b/player.c @@ -815,7 +815,7 @@ static abuf_t *buffer_get_frame(rtsp_conn_info *conn) { if (conn->ab_buffering) { // if we are getting packets but not yet forwarding them to the // player int have_sent_prefiller_silence = - 0; // set true when we have sent some silent frames to the + 1; // set true when we have sent some silent frames to the // DAC int64_t reference_timestamp; uint64_t reference_timestamp_time, remote_reference_timestamp_time;