Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'video/videofx/src/border/roundedcorners.rs')
-rw-r--r--video/videofx/src/border/roundedcorners.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/videofx/src/border/roundedcorners.rs b/video/videofx/src/border/roundedcorners.rs
index d3f4819af..348569bf2 100644
--- a/video/videofx/src/border/roundedcorners.rs
+++ b/video/videofx/src/border/roundedcorners.rs
@@ -610,8 +610,8 @@ impl BaseTransformImpl for RoundedCorners {
fn propose_allocation(
&self,
element: &Self::Type,
- decide_query: Option<gst::query::Allocation<&gst::QueryRef>>,
- mut query: gst::query::Allocation<&mut gst::QueryRef>,
+ decide_query: Option<&gst::query::Allocation<gst::QueryRef>>,
+ query: &mut gst::query::Allocation<gst::QueryRef>,
) -> Result<(), gst::LoggableError> {
query.add_allocation_meta::<gst_video::VideoMeta>(None);
self.parent_propose_allocation(element, decide_query, query)