/* 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 */ use jellycommon::{stream::StreamSpec, LocalTrack, Node}; use std::ops::Range; use tokio::io::DuplexStream; pub async fn stream_segment( node: Node, track_sources: Vec, spec: StreamSpec, range: Range, b: DuplexStream, ) { }