diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-06 02:53:56 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-06 02:53:56 +0100 |
| commit | 1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 (patch) | |
| tree | d17dc16bb14772c184c1b539f51e548bc8e452d0 /stream/src | |
| parent | bb7aa0604d1928ec435e97f6e58521597bc61c3b (diff) | |
| download | jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.bz2 jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.zst | |
Update copyright year
Diffstat (limited to 'stream/src')
| -rw-r--r-- | stream/src/cues.rs | 2 | ||||
| -rw-r--r-- | stream/src/fragment.rs | 2 | ||||
| -rw-r--r-- | stream/src/fragment_index.rs | 2 | ||||
| -rw-r--r-- | stream/src/hls.rs | 2 | ||||
| -rw-r--r-- | stream/src/lib.rs | 2 | ||||
| -rw-r--r-- | stream/src/metadata.rs | 2 | ||||
| -rw-r--r-- | stream/src/stream_info.rs | 2 | ||||
| -rw-r--r-- | stream/src/webvtt.rs | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/stream/src/cues.rs b/stream/src/cues.rs index 8aac590..fbcb341 100644 --- a/stream/src/cues.rs +++ b/stream/src/cues.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Result}; diff --git a/stream/src/fragment.rs b/stream/src/fragment.rs index ef4f074..3f6ed98 100644 --- a/stream/src/fragment.rs +++ b/stream/src/fragment.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{ cues::{generate_cues, GeneratedCue}, diff --git a/stream/src/fragment_index.rs b/stream/src/fragment_index.rs index 9d82cd7..58e5bd7 100644 --- a/stream/src/fragment_index.rs +++ b/stream/src/fragment_index.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{cues::generate_cues, stream_info, SMediaInfo}; use anyhow::{anyhow, Result}; diff --git a/stream/src/hls.rs b/stream/src/hls.rs index 2c91365..20f452c 100644 --- a/stream/src/hls.rs +++ b/stream/src/hls.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{fragment_index::fragment_index, stream_info, SMediaInfo}; diff --git a/stream/src/lib.rs b/stream/src/lib.rs index 6c6db8f..717225e 100644 --- a/stream/src/lib.rs +++ b/stream/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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ #![feature(iterator_try_collect)] pub mod cues; diff --git a/stream/src/metadata.rs b/stream/src/metadata.rs index 30d30e5..640b851 100644 --- a/stream/src/metadata.rs +++ b/stream/src/metadata.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Result}; diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs index 59e9d83..216c968 100644 --- a/stream/src/stream_info.rs +++ b/stream/src/stream_info.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ use crate::{cues::generate_cues, metadata::read_metadata, SMediaInfo, CONF}; use anyhow::Result; diff --git a/stream/src/webvtt.rs b/stream/src/webvtt.rs index d99111e..c35a231 100644 --- a/stream/src/webvtt.rs +++ b/stream/src/webvtt.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 <metamuffin.org> + Copyright (C) 2026 metamuffin <metamuffin.org> */ // async fn vtt_stream(json: bool, node: Arc<Node>, spec: StreamSpec, b: DuplexStream) -> Result<()> { |