mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-11 03:35:26 +00:00
threadshare: Update for glib::Type API changes
This commit is contained in:
parent
0616c18703
commit
5dd0a23986
2 changed files with 4 additions and 4 deletions
|
@ -1439,7 +1439,7 @@ impl ObjectImpl for JitterBuffer {
|
|||
vec![glib::subclass::Signal::builder(
|
||||
"clear-pt-map",
|
||||
&[],
|
||||
glib::types::Type::Unit.into(),
|
||||
glib::types::Type::UNIT.into(),
|
||||
)
|
||||
.action()
|
||||
.class_handler(|_, args| {
|
||||
|
|
|
@ -1117,7 +1117,7 @@ impl ObjectImpl for UdpSink {
|
|||
glib::subclass::Signal::builder(
|
||||
"add",
|
||||
&[String::static_type().into(), i32::static_type().into()],
|
||||
glib::types::Type::Unit.into(),
|
||||
glib::types::Type::UNIT.into(),
|
||||
)
|
||||
.action()
|
||||
.class_handler(|_, args| {
|
||||
|
@ -1145,7 +1145,7 @@ impl ObjectImpl for UdpSink {
|
|||
glib::subclass::Signal::builder(
|
||||
"remove",
|
||||
&[String::static_type().into(), i32::static_type().into()],
|
||||
glib::types::Type::Unit.into(),
|
||||
glib::types::Type::UNIT.into(),
|
||||
)
|
||||
.action()
|
||||
.class_handler(|_, args| {
|
||||
|
@ -1170,7 +1170,7 @@ impl ObjectImpl for UdpSink {
|
|||
None
|
||||
})
|
||||
.build(),
|
||||
glib::subclass::Signal::builder("clear", &[], glib::types::Type::Unit.into())
|
||||
glib::subclass::Signal::builder("clear", &[], glib::types::Type::UNIT.into())
|
||||
.action()
|
||||
.class_handler(|_, args| {
|
||||
let element = args[0]
|
||||
|
|
Loading…
Reference in a new issue