module-rtp: improve logging priorities

Previous state was useless for real debug at the current implementation level
This commit is contained in:
Dmitry Sharshakov 2023-12-16 19:43:17 +03:00 committed by Wim Taymans
parent c75f6219dc
commit 1fe6feac56
6 changed files with 23 additions and 23 deletions

View file

@ -11,7 +11,7 @@ static void rtp_audio_process_playback(void *data)
int32_t avail;
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
pw_log_debug("Out of stream buffers: %m");
pw_log_info("Out of stream buffers: %m");
return;
}
d = buf->buffer->datas;
@ -68,7 +68,7 @@ static void rtp_audio_process_playback(void *data)
corr = spa_dll_update(&impl->dll, error);
pw_log_debug("avail:%u target:%u error:%f corr:%f", avail,
pw_log_trace("avail:%u target:%u error:%f corr:%f", avail,
target_buffer, error, corr);
if (impl->io_rate_match) {
@ -165,7 +165,7 @@ static int rtp_audio_receive(struct impl *impl, uint8_t *buffer, ssize_t len)
BUFFER_SIZE / stride);
impl->have_sync = false;
} else {
pw_log_debug("got samples:%u", samples);
pw_log_trace("got samples:%u", samples);
spa_ringbuffer_write_data(&impl->ring,
impl->buffer,
BUFFER_SIZE,
@ -259,7 +259,7 @@ static void rtp_audio_process_capture(void *data)
int32_t filled, wanted;
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
pw_log_debug("Out of stream buffers: %m");
pw_log_info("Out of stream buffers: %m");
return;
}
d = buf->buffer->datas;

View file

@ -15,7 +15,7 @@ static void rtp_midi_process_playback(void *data)
struct spa_pod_control *c;
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
pw_log_debug("Out of stream buffers: %m");
pw_log_info("Out of stream buffers: %m");
return;
}
d = buf->buffer->datas;
@ -204,7 +204,7 @@ static int rtp_midi_receive_midi(struct impl *impl, uint8_t *packet, uint32_t ti
/* our current time is now the estimated time */
t = estimated;
}
pw_log_debug("%f %f %f %f", t, estimated, diff, impl->corr);
pw_log_trace("%f %f %f %f", t, estimated, diff, impl->corr);
timestamp = t * impl->rate;
@ -400,7 +400,7 @@ static void rtp_midi_flush_packets(struct impl *impl,
}
iov[2].iov_len = len;
pw_log_debug("sending %d timestamp:%d %u %u",
pw_log_trace("sending %d timestamp:%d %u %u",
len, timestamp + base,
offset, impl->psamples);
rtp_stream_emit_send_packet(impl, iov, 3);
@ -436,7 +436,7 @@ static void rtp_midi_flush_packets(struct impl *impl,
}
iov[2].iov_len = len;
pw_log_debug("sending %d timestamp:%d", len, base);
pw_log_trace("sending %d timestamp:%d", len, base);
rtp_stream_emit_send_packet(impl, iov, 3);
impl->seq++;
}
@ -452,7 +452,7 @@ static void rtp_midi_process_capture(void *data)
void *ptr;
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
pw_log_debug("Out of stream buffers: %m");
pw_log_info("Out of stream buffers: %m");
return;
}
d = buf->buffer->datas;

View file

@ -16,7 +16,7 @@ static void rtp_opus_process_playback(void *data)
int32_t avail;
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
pw_log_debug("Out of stream buffers: %m");
pw_log_info("Out of stream buffers: %m");
return;
}
d = buf->buffer->datas;
@ -73,7 +73,7 @@ static void rtp_opus_process_playback(void *data)
corr = spa_dll_update(&impl->dll, error);
pw_log_debug("avail:%u target:%u error:%f corr:%f", avail,
pw_log_trace("avail:%u target:%u error:%f corr:%f", avail,
target_buffer, error, corr);
if (impl->io_rate_match) {
@ -183,7 +183,7 @@ static int rtp_opus_receive(struct impl *impl, uint8_t *buffer, ssize_t len)
if (end > BUFFER_SIZE2)
memmove(impl->buffer, &impl->buffer[BUFFER_SIZE2], end - BUFFER_SIZE2);
pw_log_debug("receiving %zd len:%d timestamp:%d %u", plen, res, timestamp, index);
pw_log_info("receiving %zd len:%d timestamp:%d %u", plen, res, timestamp, index);
samples = res;
write += samples;
@ -244,7 +244,7 @@ static void rtp_opus_flush_packets(struct impl *impl)
(const float*)&impl->buffer[offset * stride], tosend,
out, sizeof(out));
pw_log_debug("sending %d len:%d timestamp:%d", tosend, res, timestamp);
pw_log_trace("sending %d len:%d timestamp:%d", tosend, res, timestamp);
iov[1].iov_len = res;
rtp_stream_emit_send_packet(impl, iov, 2);
@ -255,7 +255,7 @@ static void rtp_opus_flush_packets(struct impl *impl)
avail -= tosend;
}
pw_log_debug("move %d offset:%d", avail, offset);
pw_log_trace("move %d offset:%d", avail, offset);
memmove(impl->buffer, &impl->buffer[offset * stride], avail * stride);
spa_ringbuffer_read_update(&impl->ring, timestamp);
@ -270,7 +270,7 @@ static void rtp_opus_process_capture(void *data)
int32_t filled, wanted;
if ((buf = pw_stream_dequeue_buffer(impl->stream)) == NULL) {
pw_log_debug("Out of stream buffers: %m");
pw_log_info("Out of stream buffers: %m");
return;
}
d = buf->buffer->datas;