Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>2023-02-09 12:03:03 +0300
committerJan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>2023-02-09 15:07:33 +0300
commitc1bfeb4c2335fa787fe2b2b9b6a6efe726cb8571 (patch)
tree5a2fe58bc5c3857c2536ff5b60fc5ff33304638b
parent0af7151ae9ec34939c63f1731bde4c77064e9ac3 (diff)
livesync: Fix log message capitalization
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1083>
-rw-r--r--utils/livesync/src/livesync/imp.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/utils/livesync/src/livesync/imp.rs b/utils/livesync/src/livesync/imp.rs
index fb8bc3f9..14bd1a83 100644
--- a/utils/livesync/src/livesync/imp.rs
+++ b/utils/livesync/src/livesync/imp.rs
@@ -746,7 +746,7 @@ impl LiveSync {
_pad: &gst::Pad,
mut buffer: gst::Buffer,
) -> Result<gst::FlowSuccess, gst::FlowError> {
- gst::trace!(CAT, imp: self, "incoming {:?}", buffer);
+ gst::trace!(CAT, imp: self, "Incoming {:?}", buffer);
let mut state = self.state.lock();
@@ -783,7 +783,7 @@ impl LiveSync {
let buf_mut = buffer.make_mut();
if buf_mut.pts().is_none() {
- gst::warning!(CAT, imp: self, "incoming buffer has no timestamps");
+ gst::warning!(CAT, imp: self, "Incoming buffer has no timestamps");
}
if let Some(audio_info) = &state.in_audio_info {
@@ -843,7 +843,7 @@ impl LiveSync {
}
if buf_mut.duration().is_none() {
- gst::debug!(CAT, imp: self, "incoming buffer without duration");
+ gst::debug!(CAT, imp: self, "Incoming buffer without duration");
buf_mut.set_duration(Some(state.fallback_duration));
}
@@ -863,13 +863,13 @@ impl LiveSync {
BufferLateness::OnTime => {}
BufferLateness::LateUnderThreshold => {
- gst::debug!(CAT, imp: self, "discarding late {:?}", buf_mut);
+ gst::debug!(CAT, imp: self, "Discarding late {:?}", buf_mut);
state.num_drop += 1;
return Ok(gst::FlowSuccess::Ok);
}
BufferLateness::LateOverThreshold => {
- gst::debug!(CAT, imp: self, "accepting late {:?}", buf_mut);
+ gst::debug!(CAT, imp: self, "Accepting late {:?}", buf_mut);
let prev = state.out_buffer.as_ref().unwrap();
let prev_duration = prev.duration().unwrap();
@@ -1040,7 +1040,7 @@ impl LiveSync {
out_audio_info: ref audio_info,
..
} = *state;
- gst::debug!(CAT, imp: self, "repeating {:?}", buffer);
+ gst::debug!(CAT, imp: self, "Repeating {:?}", buffer);
let buffer = buffer.as_mut().unwrap().make_mut();
let prev_duration = buffer.duration().unwrap();