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/gif
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/gif
parent326449b3e6b38b0c9861f3a67e0a92629500336f (diff)
Add SPDX-License-Identifier to all file headers
Diffstat (limited to 'video/gif')
-rw-r--r--video/gif/examples/testvideosrc2gif.rs2
-rw-r--r--video/gif/src/gifenc/imp.rs2
-rw-r--r--video/gif/src/gifenc/mod.rs2
-rw-r--r--video/gif/src/lib.rs2
-rw-r--r--video/gif/tests/gifenc.rs2
5 files changed, 10 insertions, 0 deletions
diff --git a/video/gif/examples/testvideosrc2gif.rs b/video/gif/examples/testvideosrc2gif.rs
index 056e0dee9..106f4ffa2 100644
--- a/video/gif/examples/testvideosrc2gif.rs
+++ b/video/gif/examples/testvideosrc2gif.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::prelude::*;
diff --git a/video/gif/src/gifenc/imp.rs b/video/gif/src/gifenc/imp.rs
index 64027cd11..39b64cfe6 100644
--- a/video/gif/src/gifenc/imp.rs
+++ b/video/gif/src/gifenc/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 atomic_refcell::AtomicRefCell;
use gst::glib;
diff --git a/video/gif/src/gifenc/mod.rs b/video/gif/src/gifenc/mod.rs
index 6ebf0c2c8..87ebc62c2 100644
--- a/video/gif/src/gifenc/mod.rs
+++ b/video/gif/src/gifenc/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/gif/src/lib.rs b/video/gif/src/lib.rs
index 7caa3ee59..25cf64df6 100644
--- a/video/gif/src/lib.rs
+++ b/video/gif/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;
diff --git a/video/gif/tests/gifenc.rs b/video/gif/tests/gifenc.rs
index 54d96a06c..525b3e46f 100644
--- a/video/gif/tests/gifenc.rs
+++ b/video/gif/tests/gifenc.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
fn init() {
use std::sync::Once;