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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/video/hsv
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-01-15 22:18:47 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-01-15 22:18:47 +0300
commit51f8e963d6124f268e8a42e5079df38a4efe0d54 (patch)
tree63993a5483c02f6eefea7a7274ff5190669128a5 /video/hsv
parent326449b3e6b38b0c9861f3a67e0a92629500336f (diff)
Add SPDX-License-Identifier to all file headers
Diffstat (limited to 'video/hsv')
-rw-r--r--video/hsv/src/hsvdetector/imp.rs2
-rw-r--r--video/hsv/src/hsvdetector/mod.rs2
-rw-r--r--video/hsv/src/hsvfilter/imp.rs2
-rw-r--r--video/hsv/src/hsvfilter/mod.rs2
-rw-r--r--video/hsv/src/hsvutils.rs2
-rw-r--r--video/hsv/src/lib.rs2
6 files changed, 12 insertions, 0 deletions
diff --git a/video/hsv/src/hsvdetector/imp.rs b/video/hsv/src/hsvdetector/imp.rs
index bd758dcdf..36e3891c8 100644
--- a/video/hsv/src/hsvdetector/imp.rs
+++ b/video/hsv/src/hsvdetector/imp.rs
@@ -5,6 +5,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
+//
+// SPDX-License-Identifier: MIT/Apache-2.0
use gst::glib;
use gst::prelude::*;
diff --git a/video/hsv/src/hsvdetector/mod.rs b/video/hsv/src/hsvdetector/mod.rs
index c4c7b97b4..661407076 100644
--- a/video/hsv/src/hsvdetector/mod.rs
+++ b/video/hsv/src/hsvdetector/mod.rs
@@ -5,6 +5,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
+//
+// SPDX-License-Identifier: MIT/Apache-2.0
use gst::glib;
use gst::prelude::*;
diff --git a/video/hsv/src/hsvfilter/imp.rs b/video/hsv/src/hsvfilter/imp.rs
index 444fdbd2b..391de8a92 100644
--- a/video/hsv/src/hsvfilter/imp.rs
+++ b/video/hsv/src/hsvfilter/imp.rs
@@ -5,6 +5,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
+//
+// SPDX-License-Identifier: MIT/Apache-2.0
use gst::glib;
use gst::gst_info;
diff --git a/video/hsv/src/hsvfilter/mod.rs b/video/hsv/src/hsvfilter/mod.rs
index 37cd6b635..95f832021 100644
--- a/video/hsv/src/hsvfilter/mod.rs
+++ b/video/hsv/src/hsvfilter/mod.rs
@@ -5,6 +5,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
+//
+// SPDX-License-Identifier: MIT/Apache-2.0
use gst::glib;
use gst::prelude::*;
diff --git a/video/hsv/src/hsvutils.rs b/video/hsv/src/hsvutils.rs
index 18a23aae5..5577e5912 100644
--- a/video/hsv/src/hsvutils.rs
+++ b/video/hsv/src/hsvutils.rs
@@ -5,6 +5,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
+//
+// SPDX-License-Identifier: MIT/Apache-2.0
// Reference used for implementation: https://en.wikipedia.org/wiki/HSL_and_HSV
diff --git a/video/hsv/src/lib.rs b/video/hsv/src/lib.rs
index 33053223c..7b56aefc2 100644
--- a/video/hsv/src/lib.rs
+++ b/video/hsv/src/lib.rs
@@ -5,6 +5,8 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
+//
+// SPDX-License-Identifier: MIT/Apache-2.0
#![allow(clippy::non_send_fields_in_send_ty)]
use gst::glib;