bluetooth: mSBC: log lost input audio packets at debug level
authorIgor V. Kovalenko <igor.v.kovalenko@gmail.com>
Thu, 4 Mar 2021 13:24:31 +0000 (16:24 +0300)
committerPulseAudio Marge Bot <pulseaudio-maintainers@lists.freedesktop.org>
Mon, 5 Apr 2021 15:43:32 +0000 (15:43 +0000)
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/507>

src/modules/bluetooth/bt-codec-msbc.c

index 91c169d..7df837e 100644 (file)
@@ -273,7 +273,7 @@ static size_t decode_buffer(void *codec_info, const uint8_t *input_buffer, size_
     uint8_t lost_packets = (4 + seq - sbc_info->msbc_seq++) % 4;
 
     if (lost_packets) {
-        pa_log_error("Lost %d input audio packet(s)", lost_packets);
+        pa_log_debug("Lost %d input audio packet(s)", lost_packets);
         sbc_info->msbc_seq = seq + 1;
     }