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-03-14 11:22:53 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-03-14 11:23:16 +0300
commit6cf7d28481ddccf5c8eb84f639a7608c50314786 (patch)
treece7193e9cd8d006e08e2e5f5c130d524d8ed49fc /video/gif
parentaac7e52d87a37bf8bbe8d1e6e9a0e6fa55eeae77 (diff)
Use SPDX license format in Cargo.toml
Diffstat (limited to 'video/gif')
-rw-r--r--video/gif/Cargo.toml2
-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
6 files changed, 6 insertions, 6 deletions
diff --git a/video/gif/Cargo.toml b/video/gif/Cargo.toml
index 5d9c354fb..616b3dbe2 100644
--- a/video/gif/Cargo.toml
+++ b/video/gif/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-gif"
version = "0.9.0"
authors = ["Markus Ebner <info@ebner-markus.de>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.57"
description = "GStreamer GIF plugin"
diff --git a/video/gif/examples/testvideosrc2gif.rs b/video/gif/examples/testvideosrc2gif.rs
index 106f4ffa2..4e7848b25 100644
--- a/video/gif/examples/testvideosrc2gif.rs
+++ b/video/gif/examples/testvideosrc2gif.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
use gst::prelude::*;
diff --git a/video/gif/src/gifenc/imp.rs b/video/gif/src/gifenc/imp.rs
index 4c863a7ea..f5876b923 100644
--- a/video/gif/src/gifenc/imp.rs
+++ b/video/gif/src/gifenc/imp.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR 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 3a5ed0ce0..2e6b7de33 100644
--- a/video/gif/src/gifenc/mod.rs
+++ b/video/gif/src/gifenc/mod.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
use gst::glib;
use gst::prelude::*;
diff --git a/video/gif/src/lib.rs b/video/gif/src/lib.rs
index 25cf64df6..0ae16abf9 100644
--- a/video/gif/src/lib.rs
+++ b/video/gif/src/lib.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR 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 525b3e46f..8d9ce9a67 100644
--- a/video/gif/tests/gifenc.rs
+++ b/video/gif/tests/gifenc.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
fn init() {
use std::sync::Once;