mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-18 08:06:31 +00:00
togglerecord: implement Debug on Stream and StreamState
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1935>
This commit is contained in:
parent
7a336cf8ad
commit
fb54cfa425
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,7 @@ impl Default for Settings {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
#[derive(Clone, Debug)]
|
||||
struct Stream {
|
||||
sinkpad: gst::Pad,
|
||||
srcpad: gst::Pad,
|
||||
|
@ -66,6 +66,7 @@ impl Stream {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct StreamState {
|
||||
in_segment: gst::FormattedSegment<gst::ClockTime>,
|
||||
out_segment: gst::FormattedSegment<gst::ClockTime>,
|
||||
|
|
Loading…
Reference in a new issue