mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-03 02:03:48 +00:00
fmp4mux: Some debug output improvements
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2193>
This commit is contained in:
parent
06f1a7e818
commit
7dff55521e
1 changed files with 8 additions and 8 deletions
|
@ -3437,7 +3437,7 @@ impl FMP4Mux {
|
||||||
let lang = lang.get();
|
let lang = lang.get();
|
||||||
gst::trace!(
|
gst::trace!(
|
||||||
CAT,
|
CAT,
|
||||||
imp = self,
|
obj = pad,
|
||||||
"Received language code from tags: {:?}",
|
"Received language code from tags: {:?}",
|
||||||
lang
|
lang
|
||||||
);
|
);
|
||||||
|
@ -3457,7 +3457,7 @@ impl FMP4Mux {
|
||||||
} else if let Some(orientation) = tag.get::<gst::tags::ImageOrientation>() {
|
} else if let Some(orientation) = tag.get::<gst::tags::ImageOrientation>() {
|
||||||
gst::trace!(
|
gst::trace!(
|
||||||
CAT,
|
CAT,
|
||||||
imp = self,
|
obj = pad,
|
||||||
"Received image orientation from tags: {:?}",
|
"Received image orientation from tags: {:?}",
|
||||||
orientation.get(),
|
orientation.get(),
|
||||||
);
|
);
|
||||||
|
@ -3474,7 +3474,7 @@ impl FMP4Mux {
|
||||||
let bitrate = bitrate.get();
|
let bitrate = bitrate.get();
|
||||||
gst::trace!(
|
gst::trace!(
|
||||||
CAT,
|
CAT,
|
||||||
imp = self,
|
obj = pad,
|
||||||
"Received maximum bitrate from tags: {:?}",
|
"Received maximum bitrate from tags: {:?}",
|
||||||
bitrate
|
bitrate
|
||||||
);
|
);
|
||||||
|
@ -3492,7 +3492,7 @@ impl FMP4Mux {
|
||||||
.filter(|br| br.get() > 0 && br.get() < u32::MAX)
|
.filter(|br| br.get() > 0 && br.get() < u32::MAX)
|
||||||
{
|
{
|
||||||
let bitrate = bitrate.get();
|
let bitrate = bitrate.get();
|
||||||
gst::trace!(CAT, imp = self, "Received bitrate from tags: {:?}", bitrate);
|
gst::trace!(CAT, obj = pad, "Received bitrate from tags: {:?}", bitrate);
|
||||||
|
|
||||||
if tag.scope() == gst::TagScope::Global {
|
if tag.scope() == gst::TagScope::Global {
|
||||||
gst::info!(
|
gst::info!(
|
||||||
|
@ -4357,7 +4357,7 @@ impl AggregatorImpl for FMP4Mux {
|
||||||
EventView::Caps(caps) => {
|
EventView::Caps(caps) => {
|
||||||
let caps = caps.caps_owned();
|
let caps = caps.caps_owned();
|
||||||
|
|
||||||
gst::trace!(CAT, imp = self, "Received caps {}", caps);
|
gst::trace!(CAT, obj = aggregator_pad, "Received caps {}", caps);
|
||||||
|
|
||||||
// Only care of caps if streams have been setup and the
|
// Only care of caps if streams have been setup and the
|
||||||
// caps actually change in an incompatible way
|
// caps actually change in an incompatible way
|
||||||
|
@ -4401,7 +4401,7 @@ impl AggregatorImpl for FMP4Mux {
|
||||||
let lang = tag_value.get();
|
let lang = tag_value.get();
|
||||||
gst::trace!(
|
gst::trace!(
|
||||||
CAT,
|
CAT,
|
||||||
imp = self,
|
obj = aggregator_pad,
|
||||||
"Received language code from tags: {:?}",
|
"Received language code from tags: {:?}",
|
||||||
lang
|
lang
|
||||||
);
|
);
|
||||||
|
@ -4419,7 +4419,7 @@ impl AggregatorImpl for FMP4Mux {
|
||||||
if tag.scope() == gst::TagScope::Global {
|
if tag.scope() == gst::TagScope::Global {
|
||||||
gst::info!(
|
gst::info!(
|
||||||
CAT,
|
CAT,
|
||||||
imp = self,
|
obj = aggregator_pad,
|
||||||
"Language tags scoped 'global' are considered stream tags",
|
"Language tags scoped 'global' are considered stream tags",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -4434,7 +4434,7 @@ impl AggregatorImpl for FMP4Mux {
|
||||||
let orientation = tag_value.get();
|
let orientation = tag_value.get();
|
||||||
gst::trace!(
|
gst::trace!(
|
||||||
CAT,
|
CAT,
|
||||||
imp = self,
|
obj = aggregator_pad,
|
||||||
"Received image orientation from tags: {:?}",
|
"Received image orientation from tags: {:?}",
|
||||||
orientation
|
orientation
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue