mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-05 17:19:42 +00:00
Let ChildProxy::set_child_property() take a &ToValue instead of an actual Value
This commit is contained in:
parent
3de73d89f2
commit
52ca97e7e6
1 changed files with 3 additions and 2 deletions
|
@ -15,7 +15,7 @@ use ChildProxy;
|
|||
|
||||
pub trait ChildProxyExtManual {
|
||||
fn get_child_property(&self, name: &str) -> Option<glib::Value>;
|
||||
fn set_child_property(&self, name: &str, value: &glib::Value) -> Result<(), glib::BoolError>;
|
||||
fn set_child_property(&self, name: &str, value: &glib::ToValue) -> Result<(), glib::BoolError>;
|
||||
}
|
||||
|
||||
impl<O: IsA<ChildProxy>> ChildProxyExtManual for O {
|
||||
|
@ -41,7 +41,7 @@ impl<O: IsA<ChildProxy>> ChildProxyExtManual for O {
|
|||
}
|
||||
}
|
||||
|
||||
fn set_child_property(&self, name: &str, value: &glib::Value) -> Result<(), glib::BoolError> {
|
||||
fn set_child_property(&self, name: &str, value: &glib::ToValue) -> Result<(), glib::BoolError> {
|
||||
unsafe {
|
||||
let found: bool = from_glib(ffi::gst_child_proxy_lookup(
|
||||
self.to_glib_none().0,
|
||||
|
@ -53,6 +53,7 @@ impl<O: IsA<ChildProxy>> ChildProxyExtManual for O {
|
|||
return Err(glib::BoolError("Child property not found"));
|
||||
}
|
||||
|
||||
let value = value.to_value();
|
||||
ffi::gst_child_proxy_set_property(
|
||||
self.to_glib_none().0,
|
||||
name.to_glib_none().0,
|
||||
|
|
Loading…
Reference in a new issue