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-01-15 22:18:47 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-01-15 22:18:47 +0300
commit51f8e963d6124f268e8a42e5079df38a4efe0d54 (patch)
tree63993a5483c02f6eefea7a7274ff5190669128a5 /video/ffv1
parent326449b3e6b38b0c9861f3a67e0a92629500336f (diff)
Add SPDX-License-Identifier to all file headers
Diffstat (limited to 'video/ffv1')
-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
4 files changed, 8 insertions, 0 deletions
diff --git a/video/ffv1/src/ffv1dec/imp.rs b/video/ffv1/src/ffv1dec/imp.rs
index fd5321626..81a31e245 100644
--- a/video/ffv1/src/ffv1dec/imp.rs
+++ b/video/ffv1/src/ffv1dec/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 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 71fa34c36..dfbc2dd89 100644
--- a/video/ffv1/src/ffv1dec/mod.rs
+++ b/video/ffv1/src/ffv1dec/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/ffv1/src/lib.rs b/video/ffv1/src/lib.rs
index ca52eb17b..03572c2d5 100644
--- a/video/ffv1/src/lib.rs
+++ b/video/ffv1/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)]
mod ffv1dec;
diff --git a/video/ffv1/tests/ffv1dec.rs b/video/ffv1/tests/ffv1dec.rs
index 894af6bcf..a431ff4ce 100644
--- a/video/ffv1/tests/ffv1dec.rs
+++ b/video/ffv1/tests/ffv1dec.rs
@@ -6,6 +6,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::*;