From 1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 6 Jan 2026 02:53:56 +0100 Subject: Update copyright year --- remuxer/src/bin/analyze_kf_placement.rs | 2 +- remuxer/src/bin/average_cluster_duration.rs | 2 +- remuxer/src/bin/mkvinfo.rs | 2 +- remuxer/src/demuxers/flac.rs | 2 +- remuxer/src/demuxers/matroska.rs | 2 +- remuxer/src/demuxers/mod.rs | 2 +- remuxer/src/lib.rs | 2 +- remuxer/src/magic.rs | 2 +- remuxer/src/muxers/matroska.rs | 2 +- remuxer/src/muxers/mod.rs | 2 +- remuxer/src/muxers/mpeg4.rs | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) (limited to 'remuxer') diff --git a/remuxer/src/bin/analyze_kf_placement.rs b/remuxer/src/bin/analyze_kf_placement.rs index 7a5a01d..519d3b9 100644 --- a/remuxer/src/bin/analyze_kf_placement.rs +++ b/remuxer/src/bin/analyze_kf_placement.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use anyhow::{Result, anyhow}; diff --git a/remuxer/src/bin/average_cluster_duration.rs b/remuxer/src/bin/average_cluster_duration.rs index 41effb4..34312af 100644 --- a/remuxer/src/bin/average_cluster_duration.rs +++ b/remuxer/src/bin/average_cluster_duration.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use anyhow::{Result, anyhow}; diff --git a/remuxer/src/bin/mkvinfo.rs b/remuxer/src/bin/mkvinfo.rs index b5f3ae4..5c4bada 100644 --- a/remuxer/src/bin/mkvinfo.rs +++ b/remuxer/src/bin/mkvinfo.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use anyhow::{Result, anyhow}; diff --git a/remuxer/src/demuxers/flac.rs b/remuxer/src/demuxers/flac.rs index bdfa2e5..ecaf6c4 100644 --- a/remuxer/src/demuxers/flac.rs +++ b/remuxer/src/demuxers/flac.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::demuxers::{Demuxer, DemuxerNew, ReadSeek}; diff --git a/remuxer/src/demuxers/matroska.rs b/remuxer/src/demuxers/matroska.rs index bf4614d..be4eddc 100644 --- a/remuxer/src/demuxers/matroska.rs +++ b/remuxer/src/demuxers/matroska.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::demuxers::{Demuxer, DemuxerNew, ReadSeek}; diff --git a/remuxer/src/demuxers/mod.rs b/remuxer/src/demuxers/mod.rs index 597bf4a..3107476 100644 --- a/remuxer/src/demuxers/mod.rs +++ b/remuxer/src/demuxers/mod.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod flac; diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs index 306121b..e4b0fdc 100644 --- a/remuxer/src/lib.rs +++ b/remuxer/src/lib.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod demuxers; diff --git a/remuxer/src/magic.rs b/remuxer/src/magic.rs index 201f3f5..e56efdb 100644 --- a/remuxer/src/magic.rs +++ b/remuxer/src/magic.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::ContainerFormat; diff --git a/remuxer/src/muxers/matroska.rs b/remuxer/src/muxers/matroska.rs index fd13bcc..e5ce311 100644 --- a/remuxer/src/muxers/matroska.rs +++ b/remuxer/src/muxers/matroska.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::muxers::FragmentMuxer; diff --git a/remuxer/src/muxers/mod.rs b/remuxer/src/muxers/mod.rs index ae544eb..d7e8e49 100644 --- a/remuxer/src/muxers/mod.rs +++ b/remuxer/src/muxers/mod.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod matroska; diff --git a/remuxer/src/muxers/mpeg4.rs b/remuxer/src/muxers/mpeg4.rs index 437f117..2c39c35 100644 --- a/remuxer/src/muxers/mpeg4.rs +++ b/remuxer/src/muxers/mpeg4.rs @@ -1,7 +1,7 @@ /* 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) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::muxers::{FragmentMuxer, matroska::MatroskaFragmentMuxer}; -- cgit v1.3