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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net/ndi
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-01-15 23:57:14 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-15 23:58:44 +0300
commit6132788b02b38b5f0d0019f40a66a52e2d33177e (patch)
treee83ba65974bf4533ac6cb077cc65420cb08db036 /net/ndi
parent0c954135a34c16e62fa9a676c6ab165b2428a5f6 (diff)
Update for caps/structure-related string API changes
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1048>
Diffstat (limited to 'net/ndi')
-rw-r--r--net/ndi/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ndi/src/lib.rs b/net/ndi/src/lib.rs
index 97a0fc6a..1edf3712 100644
--- a/net/ndi/src/lib.rs
+++ b/net/ndi/src/lib.rs
@@ -148,9 +148,9 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
}
static TIMECODE_CAPS: Lazy<gst::Caps> =
- Lazy::new(|| gst::Caps::new_simple("timestamp/x-ndi-timecode", &[]));
+ Lazy::new(|| gst::Caps::new_empty_simple("timestamp/x-ndi-timecode"));
static TIMESTAMP_CAPS: Lazy<gst::Caps> =
- Lazy::new(|| gst::Caps::new_simple("timestamp/x-ndi-timestamp", &[]));
+ Lazy::new(|| gst::Caps::new_empty_simple("timestamp/x-ndi-timestamp"));
gst::plugin_define!(
ndi,