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/video
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
parentaac7e52d87a37bf8bbe8d1e6e9a0e6fa55eeae77 (diff)
Use SPDX license format in Cargo.toml
Diffstat (limited to 'video')
-rw-r--r--video/cdg/Cargo.toml2
-rw-r--r--video/cdg/src/cdgdec/imp.rs2
-rw-r--r--video/cdg/src/cdgdec/mod.rs2
-rw-r--r--video/cdg/src/cdgparse/imp.rs2
-rw-r--r--video/cdg/src/cdgparse/mod.rs2
-rw-r--r--video/cdg/src/constants.rs2
-rw-r--r--video/cdg/src/lib.rs2
-rw-r--r--video/cdg/src/typefind.rs2
-rw-r--r--video/cdg/tests/cdgdec.rs2
-rw-r--r--video/dav1d/Cargo.toml2
-rw-r--r--video/dav1d/src/dav1ddec/imp.rs2
-rw-r--r--video/dav1d/src/dav1ddec/mod.rs2
-rw-r--r--video/dav1d/src/lib.rs2
-rw-r--r--video/ffv1/Cargo.toml2
-rw-r--r--video/ffv1/src/ffv1dec/imp.rs2
-rw-r--r--video/ffv1/src/ffv1dec/mod.rs2
-rw-r--r--video/ffv1/src/lib.rs2
-rw-r--r--video/ffv1/tests/ffv1dec.rs2
-rw-r--r--video/flavors/Cargo.toml2
-rw-r--r--video/flavors/src/bytes.rs2
-rw-r--r--video/flavors/src/flvdemux/imp.rs2
-rw-r--r--video/flavors/src/flvdemux/mod.rs2
-rw-r--r--video/flavors/src/lib.rs2
-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
-rw-r--r--video/hsv/Cargo.toml2
-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
-rw-r--r--video/rav1e/Cargo.toml2
-rw-r--r--video/rav1e/src/lib.rs2
-rw-r--r--video/rav1e/src/rav1enc/imp.rs2
-rw-r--r--video/rav1e/src/rav1enc/mod.rs2
-rw-r--r--video/rav1e/tests/rav1enc.rs2
-rw-r--r--video/rspng/Cargo.toml2
-rw-r--r--video/rspng/examples/pngenc.rs2
-rw-r--r--video/rspng/src/lib.rs2
-rw-r--r--video/rspng/src/pngenc/imp.rs2
-rw-r--r--video/rspng/src/pngenc/mod.rs2
-rw-r--r--video/rspng/tests/pngenc.rs2
47 files changed, 47 insertions, 47 deletions
diff --git a/video/cdg/Cargo.toml b/video/cdg/Cargo.toml
index b572c122..eb4c0f54 100644
--- a/video/cdg/Cargo.toml
+++ b/video/cdg/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-cdg"
version = "0.9.0"
authors = ["Guillaume Desmottes <guillaume.desmottes@collabora.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
description = "CDG Plugin"
edition = "2021"
rust-version = "1.57"
diff --git a/video/cdg/src/cdgdec/imp.rs b/video/cdg/src/cdgdec/imp.rs
index 76d7f730..5e4f3cc3 100644
--- a/video/cdg/src/cdgdec/imp.rs
+++ b/video/cdg/src/cdgdec/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 gst::glib;
use gst::subclass::prelude::*;
diff --git a/video/cdg/src/cdgdec/mod.rs b/video/cdg/src/cdgdec/mod.rs
index 0f824779..85b5fe4e 100644
--- a/video/cdg/src/cdgdec/mod.rs
+++ b/video/cdg/src/cdgdec/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/cdg/src/cdgparse/imp.rs b/video/cdg/src/cdgparse/imp.rs
index e9bf747b..f4d04a68 100644
--- a/video/cdg/src/cdgparse/imp.rs
+++ b/video/cdg/src/cdgparse/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 gst::format::Bytes;
use gst::glib;
diff --git a/video/cdg/src/cdgparse/mod.rs b/video/cdg/src/cdgparse/mod.rs
index ec2b1254..43794b55 100644
--- a/video/cdg/src/cdgparse/mod.rs
+++ b/video/cdg/src/cdgparse/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/cdg/src/constants.rs b/video/cdg/src/constants.rs
index 69b8cf13..6f11f49c 100644
--- a/video/cdg/src/constants.rs
+++ b/video/cdg/src/constants.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
pub(crate) const CDG_PACKET_SIZE: i32 = 24;
diff --git a/video/cdg/src/lib.rs b/video/cdg/src/lib.rs
index 78a70753..bbf9bcfd 100644
--- a/video/cdg/src/lib.rs
+++ b/video/cdg/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/cdg/src/typefind.rs b/video/cdg/src/typefind.rs
index 2802c970..feff41ce 100644
--- a/video/cdg/src/typefind.rs
+++ b/video/cdg/src/typefind.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;
diff --git a/video/cdg/tests/cdgdec.rs b/video/cdg/tests/cdgdec.rs
index d5a9ca66..750ab359 100644
--- a/video/cdg/tests/cdgdec.rs
+++ b/video/cdg/tests/cdgdec.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::*;
use std::path::PathBuf;
diff --git a/video/dav1d/Cargo.toml b/video/dav1d/Cargo.toml
index 3b16f90c..2b6c84b4 100644
--- a/video/dav1d/Cargo.toml
+++ b/video/dav1d/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Philippe Normand <philn@igalia.com>"]
edition = "2021"
rust-version = "1.57"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
description = "Dav1d Plugin"
[dependencies]
diff --git a/video/dav1d/src/dav1ddec/imp.rs b/video/dav1d/src/dav1ddec/imp.rs
index 789b50bf..8331ee43 100644
--- a/video/dav1d/src/dav1ddec/imp.rs
+++ b/video/dav1d/src/dav1ddec/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 gst::glib;
use gst::prelude::*;
diff --git a/video/dav1d/src/dav1ddec/mod.rs b/video/dav1d/src/dav1ddec/mod.rs
index f714b023..b439c693 100644
--- a/video/dav1d/src/dav1ddec/mod.rs
+++ b/video/dav1d/src/dav1ddec/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/dav1d/src/lib.rs b/video/dav1d/src/lib.rs
index ae63f523..a63ee025 100644
--- a/video/dav1d/src/lib.rs
+++ b/video/dav1d/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/ffv1/Cargo.toml b/video/ffv1/Cargo.toml
index f5206458..29948e30 100644
--- a/video/ffv1/Cargo.toml
+++ b/video/ffv1/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-ffv1"
version = "0.9.0"
authors = ["Arun Raghavan <arun@asymptotic.io>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
description = "FFV1 Decoder Plugin"
edition = "2021"
rust-version = "1.57"
diff --git a/video/ffv1/src/ffv1dec/imp.rs b/video/ffv1/src/ffv1dec/imp.rs
index 4b813e75..9fdcbaaa 100644
--- a/video/ffv1/src/ffv1dec/imp.rs
+++ b/video/ffv1/src/ffv1dec/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 ffv1::constants::{RGB, YCBCR};
use ffv1::decoder::{Decoder, Frame};
diff --git a/video/ffv1/src/ffv1dec/mod.rs b/video/ffv1/src/ffv1dec/mod.rs
index 4a941b1d..52ba3425 100644
--- a/video/ffv1/src/ffv1dec/mod.rs
+++ b/video/ffv1/src/ffv1dec/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/ffv1/src/lib.rs b/video/ffv1/src/lib.rs
index 03572c2d..2fb0e972 100644
--- a/video/ffv1/src/lib.rs
+++ b/video/ffv1/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)]
mod ffv1dec;
diff --git a/video/ffv1/tests/ffv1dec.rs b/video/ffv1/tests/ffv1dec.rs
index a431ff4c..dd5b9c30 100644
--- a/video/ffv1/tests/ffv1dec.rs
+++ b/video/ffv1/tests/ffv1dec.rs
@@ -7,7 +7,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/flavors/Cargo.toml b/video/flavors/Cargo.toml
index 96e7f9ce..aa62f8e9 100644
--- a/video/flavors/Cargo.toml
+++ b/video/flavors/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-flavors"
version = "0.9.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
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 = "Rust FLV Plugin"
diff --git a/video/flavors/src/bytes.rs b/video/flavors/src/bytes.rs
index f02b8166..02263993 100644
--- a/video/flavors/src/bytes.rs
+++ b/video/flavors/src/bytes.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
pub use byteorder::{BigEndian, LittleEndian, ReadBytesExt, WriteBytesExt};
use std::io;
diff --git a/video/flavors/src/flvdemux/imp.rs b/video/flavors/src/flvdemux/imp.rs
index cf4eee7b..36d010a3 100644
--- a/video/flavors/src/flvdemux/imp.rs
+++ b/video/flavors/src/flvdemux/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 std::cmp;
use std::sync::Mutex;
diff --git a/video/flavors/src/flvdemux/mod.rs b/video/flavors/src/flvdemux/mod.rs
index 9ee44eda..aa311bdf 100644
--- a/video/flavors/src/flvdemux/mod.rs
+++ b/video/flavors/src/flvdemux/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/flavors/src/lib.rs b/video/flavors/src/lib.rs
index 70d0a498..95bf6501 100644
--- a/video/flavors/src/lib.rs
+++ b/video/flavors/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/Cargo.toml b/video/gif/Cargo.toml
index 5d9c354f..616b3dbe 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 106f4ffa..4e7848b2 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 4c863a7e..f5876b92 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 3a5ed0ce..2e6b7de3 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 25cf64df..0ae16abf 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 525b3e46..8d9ce9a6 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;
diff --git a/video/hsv/Cargo.toml b/video/hsv/Cargo.toml
index 99406ef8..9e4cd69f 100644
--- a/video/hsv/Cargo.toml
+++ b/video/hsv/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-hsv"
version = "0.9.0"
authors = ["Julien Bardagi <julien.bardagi@gmail.com>"]
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 = "HSV manipulation elements, written in Rust"
diff --git a/video/hsv/src/hsvdetector/imp.rs b/video/hsv/src/hsvdetector/imp.rs
index 5643dba1..03f3b17d 100644
--- a/video/hsv/src/hsvdetector/imp.rs
+++ b/video/hsv/src/hsvdetector/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 gst::glib;
use gst::prelude::*;
diff --git a/video/hsv/src/hsvdetector/mod.rs b/video/hsv/src/hsvdetector/mod.rs
index cc1ff36d..2c750964 100644
--- a/video/hsv/src/hsvdetector/mod.rs
+++ b/video/hsv/src/hsvdetector/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/hsv/src/hsvfilter/imp.rs b/video/hsv/src/hsvfilter/imp.rs
index e7650e99..c0a8228f 100644
--- a/video/hsv/src/hsvfilter/imp.rs
+++ b/video/hsv/src/hsvfilter/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 gst::glib;
use gst::prelude::*;
diff --git a/video/hsv/src/hsvfilter/mod.rs b/video/hsv/src/hsvfilter/mod.rs
index 8f054cdb..8c51ff42 100644
--- a/video/hsv/src/hsvfilter/mod.rs
+++ b/video/hsv/src/hsvfilter/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/hsv/src/hsvutils.rs b/video/hsv/src/hsvutils.rs
index 5577e591..c1d7ad4c 100644
--- a/video/hsv/src/hsvutils.rs
+++ b/video/hsv/src/hsvutils.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
// 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 7b56aefc..f2ea26b3 100644
--- a/video/hsv/src/lib.rs
+++ b/video/hsv/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/rav1e/Cargo.toml b/video/rav1e/Cargo.toml
index 6e5e44c6..5414777d 100644
--- a/video/rav1e/Cargo.toml
+++ b/video/rav1e/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-rav1e"
version = "0.9.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
description = "rav1e AV1 Encoder Plugin"
edition = "2021"
rust-version = "1.57"
diff --git a/video/rav1e/src/lib.rs b/video/rav1e/src/lib.rs
index 6e5b42c8..bfc8bf9d 100644
--- a/video/rav1e/src/lib.rs
+++ b/video/rav1e/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/rav1e/src/rav1enc/imp.rs b/video/rav1e/src/rav1enc/imp.rs
index 29eb6683..fcb38651 100644
--- a/video/rav1e/src/rav1enc/imp.rs
+++ b/video/rav1e/src/rav1enc/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/rav1e/src/rav1enc/mod.rs b/video/rav1e/src/rav1enc/mod.rs
index 26a16798..9349c1dd 100644
--- a/video/rav1e/src/rav1enc/mod.rs
+++ b/video/rav1e/src/rav1enc/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/rav1e/tests/rav1enc.rs b/video/rav1e/tests/rav1enc.rs
index 85619a05..13d8a063 100644
--- a/video/rav1e/tests/rav1enc.rs
+++ b/video/rav1e/tests/rav1enc.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/rspng/Cargo.toml b/video/rspng/Cargo.toml
index c325be70..fb985a96 100644
--- a/video/rspng/Cargo.toml
+++ b/video/rspng/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-rspng"
version = "0.9.0"
authors = ["Natanael Mojica <neithanmo@gmail.com>"]
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 = "An PNG encoder/decoder written in pure Rust"
diff --git a/video/rspng/examples/pngenc.rs b/video/rspng/examples/pngenc.rs
index d543b912..0ed81975 100644
--- a/video/rspng/examples/pngenc.rs
+++ b/video/rspng/examples/pngenc.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/rspng/src/lib.rs b/video/rspng/src/lib.rs
index 38040e41..d05a4d73 100644
--- a/video/rspng/src/lib.rs
+++ b/video/rspng/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/rspng/src/pngenc/imp.rs b/video/rspng/src/pngenc/imp.rs
index 5b54972b..8d00bcf3 100644
--- a/video/rspng/src/pngenc/imp.rs
+++ b/video/rspng/src/pngenc/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 std::{io, io::Write, sync::Arc};
diff --git a/video/rspng/src/pngenc/mod.rs b/video/rspng/src/pngenc/mod.rs
index 1934e51d..debedaa2 100644
--- a/video/rspng/src/pngenc/mod.rs
+++ b/video/rspng/src/pngenc/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/rspng/tests/pngenc.rs b/video/rspng/tests/pngenc.rs
index ace393d2..bcac6e1f 100644
--- a/video/rspng/tests/pngenc.rs
+++ b/video/rspng/tests/pngenc.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;