From 9a2b64744332df2a985baf11d4a7cb1a1c0d8e91 Mon Sep 17 00:00:00 2001 From: Daniel Vilar Date: Mon, 10 Dec 2018 17:29:30 +0100 Subject: [PATCH] Updated descriptions of element properties --- src/ndiaudiosrc.rs | 4 ++-- src/ndivideosrc.rs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ndiaudiosrc.rs b/src/ndiaudiosrc.rs index 16228144..df8ab421 100644 --- a/src/ndiaudiosrc.rs +++ b/src/ndiaudiosrc.rs @@ -54,14 +54,14 @@ static PROPERTIES: [Property; 3] = [ Property::String( "ip", "Stream IP", - "Stream IP", + "IP of the streaming device. Ex: 127.0.0.1:5961", None, PropertyMutability::ReadWrite, ), Property::UInt( "loss-threshold", "Loss threshold", - "Loss threshold", + "Loss threshold. If 0 the stream is never closed by the element", (0, 60), 5, PropertyMutability::ReadWrite, diff --git a/src/ndivideosrc.rs b/src/ndivideosrc.rs index 120a0e79..162e336c 100644 --- a/src/ndivideosrc.rs +++ b/src/ndivideosrc.rs @@ -47,7 +47,7 @@ impl Default for Settings { static PROPERTIES: [Property; 3] = [ Property::String( "stream-name", - "Sream Name", + "Stream Name", "Name of the streaming device", None, PropertyMutability::ReadWrite, @@ -55,14 +55,14 @@ static PROPERTIES: [Property; 3] = [ Property::String( "ip", "Stream IP", - "Stream IP", + "IP of the streaming device. Ex: 127.0.0.1:5961", None, PropertyMutability::ReadWrite, ), Property::UInt( "loss-threshold", "Loss threshold", - "Loss threshold", + "Loss threshold. If 0 the stream is never closed by the element", (0, 60), 5, PropertyMutability::ReadWrite,