mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-16 21:05:15 +00:00
Also the default BaseTransform::transform_caps() should not take the caps parameter owned
This commit is contained in:
parent
8df8b68555
commit
8a41656f40
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ pub unsafe trait BaseTransformBase
|
||||||
Some(f) => from_glib_full(f(
|
Some(f) => from_glib_full(f(
|
||||||
self.to_glib_none().0,
|
self.to_glib_none().0,
|
||||||
direction.to_glib(),
|
direction.to_glib(),
|
||||||
caps.into_ptr(),
|
caps.to_glib_none().0,
|
||||||
filter.to_glib_none().0,
|
filter.to_glib_none().0,
|
||||||
)),
|
)),
|
||||||
None => caps,
|
None => caps,
|
||||||
|
|
Loading…
Reference in a new issue