diff options
Diffstat (limited to 'matroska/src/write.rs')
-rw-r--r-- | matroska/src/write.rs | 8 |
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, |