Skip to content
Snippets Groups Projects

ci: Update to Rust 1.72.1

Merged Sebastian Dröge requested to merge slomo/gstreamer-rs:rust-1.72.1 into main
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -444,7 +444,7 @@ impl Ord for VideoFormatInfo {
}
})
.then_with(|| {
// tiebreaker: YUV > RGB
// tiebreaker: YUV < RGB
if self.flags().contains(crate::VideoFormatFlags::RGB)
&& other.flags().contains(crate::VideoFormatFlags::YUV)
{
@@ -468,7 +468,7 @@ impl Ord for VideoFormatInfo {
})
.then_with(|| {
// tie, sort by name
self.name().cmp(other.name())
self.name().cmp(other.name()).reverse()
})
}
}
Loading