aboutsummaryrefslogtreecommitdiff
path: root/matroska/src/write.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-01-23 18:00:28 +0100
committermetamuffin <metamuffin@disroot.org>2023-01-23 18:00:28 +0100
commit4529d07cc3f2f86a9dbb0d4802875a81d5c4c495 (patch)
tree1d20346dcb4d5de761dddd3e43e7e773d157abfe /matroska/src/write.rs
parent9a2db97a779196fc670252d655c0f6bc159e9584 (diff)
downloadjellything-4529d07cc3f2f86a9dbb0d4802875a81d5c4c495.tar
jellything-4529d07cc3f2f86a9dbb0d4802875a81d5c4c495.tar.bz2
jellything-4529d07cc3f2f86a9dbb0d4802875a81d5c4c495.tar.zst
readme + add licence information
Diffstat (limited to 'matroska/src/write.rs')
-rw-r--r--matroska/src/write.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/matroska/src/write.rs b/matroska/src/write.rs
index fc12ffc..70ee06c 100644
--- a/matroska/src/write.rs
+++ b/matroska/src/write.rs
@@ -1,8 +1,12 @@
+/*
+ This file is part of jellything (https://codeberg.org/metamuffin/jellything)
+ which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
+ Copyright (C) 2023 metamuffin <metamuffin.org>
+*/
+use crate::{matroska::MatroskaTag, size::EbmlSize, Master};
use anyhow::{bail, Result};
use std::io::Write;
-use crate::{matroska::MatroskaTag, size::EbmlSize, Master};
-
pub struct EbmlWriter {
inner: Box<dyn Write>,
position: usize,