forked from mirrors/gstreamer-rs
Update indentation for rustfmt 1.72
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1306>
This commit is contained in:
parent
4b87796c92
commit
c7662ce15a
1 changed files with 2 additions and 8 deletions
|
@ -57,10 +57,7 @@ pub trait VideoAggregatorPadImplExt: ObjectSubclass {
|
||||||
token: &AggregateFramesToken,
|
token: &AggregateFramesToken,
|
||||||
buffer: &gst::Buffer,
|
buffer: &gst::Buffer,
|
||||||
) -> Option<crate::VideoFrame<crate::video_frame::Readable>> {
|
) -> Option<crate::VideoFrame<crate::video_frame::Readable>> {
|
||||||
assert_eq!(
|
assert_eq!(aggregator.as_ptr(), token.0.as_ptr());
|
||||||
aggregator.as_ptr(),
|
|
||||||
token.0.as_ptr()
|
|
||||||
);
|
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
let data = Self::type_data();
|
let data = Self::type_data();
|
||||||
|
@ -96,10 +93,7 @@ pub trait VideoAggregatorPadImplExt: ObjectSubclass {
|
||||||
token: &AggregateFramesToken,
|
token: &AggregateFramesToken,
|
||||||
frame: Option<crate::VideoFrame<crate::video_frame::Readable>>,
|
frame: Option<crate::VideoFrame<crate::video_frame::Readable>>,
|
||||||
) {
|
) {
|
||||||
assert_eq!(
|
assert_eq!(aggregator.as_ptr(), token.0.as_ptr());
|
||||||
aggregator.as_ptr(),
|
|
||||||
token.0.as_ptr()
|
|
||||||
);
|
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
let data = Self::type_data();
|
let data = Self::type_data();
|
||||||
|
|
Loading…
Reference in a new issue