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
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/ffv1
parentaac7e52d87a37bf8bbe8d1e6e9a0e6fa55eeae77 (diff)
Use SPDX license format in Cargo.toml
Diffstat (limited to 'video/ffv1')
-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
5 files changed, 5 insertions, 5 deletions
diff --git a/video/ffv1/Cargo.toml b/video/ffv1/Cargo.toml
index f52064584..29948e30c 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 4b813e754..9fdcbaaa6 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 4a941b1d9..52ba3425f 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 03572c2d5..2fb0e972f 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 a431ff4ce..dd5b9c30e 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::*;