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:
Diffstat (limited to 'utils/tracers/src/pipeline_snapshot/imp.rs')
-rw-r--r--utils/tracers/src/pipeline_snapshot/imp.rs10
1 files changed, 3 insertions, 7 deletions
diff --git a/utils/tracers/src/pipeline_snapshot/imp.rs b/utils/tracers/src/pipeline_snapshot/imp.rs
index 9f80912a..4dd75a47 100644
--- a/utils/tracers/src/pipeline_snapshot/imp.rs
+++ b/utils/tracers/src/pipeline_snapshot/imp.rs
@@ -211,17 +211,13 @@ impl PipelineSnapshot {
let dump_name = format!("{}{}", settings.dot_prefix, pipeline.name());
if settings.dot_ts {
- gst::debug_bin_to_dot_file_with_ts(
- &pipeline,
+ pipeline.debug_to_dot_file_with_ts(
gst::DebugGraphDetails::all(),
&dump_name,
);
} else {
- gst::debug_bin_to_dot_file(
- &pipeline,
- gst::DebugGraphDetails::all(),
- &dump_name,
- );
+ pipeline
+ .debug_to_dot_file(gst::DebugGraphDetails::all(), &dump_name);
}
}
}