From 1e33926dc51d37e7f682bc2a7701472acd9cf690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 May 2024 12:33:42 +0300 Subject: [PATCH] fixup: klv payloader indentation Part-of: --- net/rtp/src/klv/pay/imp.rs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/net/rtp/src/klv/pay/imp.rs b/net/rtp/src/klv/pay/imp.rs index 865ee221..e6f9ddbf 100644 --- a/net/rtp/src/klv/pay/imp.rs +++ b/net/rtp/src/klv/pay/imp.rs @@ -152,15 +152,21 @@ impl RtpBasePay2Impl for RtpKlvPay { Ok(unit_len) => unit_len, Err(err) => { // Also post warning message? - gst::warning!(CAT, imp: self, "Input doesn't look like a KLV unit, ignoring. {err:?}"); + gst::warning!( + CAT, + imp: self, + "Input doesn't look like a KLV unit, ignoring. {err:?}", + ); return Ok(gst::FlowSuccess::Ok); } }; if unit_len != data.len() { - gst::error!(CAT, imp: self, + gst::error!( + CAT, + imp: self, "Input is not properly framed: KLV unit of size {unit_len} but buffer is {} bytes", - data.len() + data.len(), ); if unit_len > data.len() {