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:
authorSebastian Dröge <sebastian@centricular.com>2021-12-06 20:11:06 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-12-06 20:11:24 +0300
commit3ed9e291c2e8abaf6dd6bc55c5e07bc59e561ff3 (patch)
treec820fccecd4c52d4e60aafa8ddf71b4fe9753f69 /video/videofx
parent66e987c174d23b053124d3d8c2f3e39f10caf70b (diff)
Update for decide/propose_allocation() API changes
Diffstat (limited to 'video/videofx')
-rw-r--r--video/videofx/src/border/roundedcorners.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/videofx/src/border/roundedcorners.rs b/video/videofx/src/border/roundedcorners.rs
index 8dbebf0de..84361ec6c 100644
--- a/video/videofx/src/border/roundedcorners.rs
+++ b/video/videofx/src/border/roundedcorners.rs
@@ -612,7 +612,7 @@ impl BaseTransformImpl for RoundedCorners {
element: &Self::Type,
decide_query: Option<gst::query::Allocation<&gst::QueryRef>>,
mut query: gst::query::Allocation<&mut gst::QueryRef>,
- ) -> Result<(), gst::ErrorMessage> {
+ ) -> Result<(), gst::LoggableError> {
query.add_allocation_meta::<gst_video::VideoMeta>(None);
self.parent_propose_allocation(element, decide_query, query)
}