summaryrefslogtreecommitdiff
path: root/src/libsink
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsink')
-rw-r--r--src/libsink/sink.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libsink/sink.c b/src/libsink/sink.c
index b9b3aa6..c95096d 100644
--- a/src/libsink/sink.c
+++ b/src/libsink/sink.c
@@ -748,7 +748,7 @@ static void pause_and_swap_to(struct camu_sink *sink, struct camu_sink_entry *ta
static bool end_entry_and_advance_queue(struct camu_sink *sink, struct camu_sink_entry *entry)
{
- log_info("Entry ("ENTRY_FMT") ended.", ENTRY_ARG(entry));
+ log_debug("Entry ("ENTRY_FMT") ended.", ENTRY_ARG(entry));
remove_previous_if_contains(sink, entry);
#ifdef CAMU_SINK_ONESHOT
sink->callback(sink->userdata, CAMU_SINK_MOCK_CLOSE, 0, NULL);
@@ -807,7 +807,7 @@ static void audio_buffer_callback(void *userdata, u8 op)
nn_mutex_unlock(&sink->lock);
break;
case CAMU_BUFFER_EOF:
- log_info("Audio EOF.");
+ log_debug("Audio EOF.");
nn_mutex_lock(&sink->lock);
// Having threaded outputs means anything could have happened while waiting
// on the lock above. If we were locked in CLIENT_REMOVE_BUFFERS, state could very
@@ -849,7 +849,7 @@ static void video_buffer_callback(void *userdata, u8 op)
lia_vcr_uncork(entry->video.track);
break;
case CAMU_BUFFER_EOF:
- log_info("Video EOF.");
+ log_debug("Video EOF.");
bool single_frame = VIDEO_IS_SINGLE_FRAME(entry);
bool swapped = false;
nn_mutex_lock(&sink->lock);
@@ -1234,7 +1234,7 @@ static void client_callback(void *userdata, u8 op, struct camu_codec_stream *str
lia_client_free(&entry->client);
camu_audio_buffer_free(&entry->audio.buf);
camu_video_buffer_free(&entry->video.buf);
- log_info("Entry ("ENTRY_FMT") closed by %s.", ENTRY_ARG(entry), removed ? "force" : "cleanup");
+ log_debug("Entry ("ENTRY_FMT") closed by %s.", ENTRY_ARG(entry), removed ? "force" : "cleanup");
al_free(entry);
break;