From db511d3fe50f05329615f718515fab1b80d9e06a Mon Sep 17 00:00:00 2001 From: metamuffin Date: Wed, 29 Jan 2025 18:03:06 +0100 Subject: no direct redb access --- stream/src/hls.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stream/src/hls.rs') diff --git a/stream/src/hls.rs b/stream/src/hls.rs index 2203ee8..c09b77f 100644 --- a/stream/src/hls.rs +++ b/stream/src/hls.rs @@ -10,14 +10,14 @@ use jellycommon::{ stream::{StreamFormat, StreamSpec}, LocalTrack, Node, SourceTrackKind, }; -use std::{fmt::Write, ops::Range}; +use std::{fmt::Write, ops::Range, sync::Arc}; use tokio::{ io::{AsyncWriteExt, DuplexStream}, task::spawn_blocking, }; pub async fn hls_master_stream( - node: Node, + node: Arc, _local_tracks: Vec, _spec: StreamSpec, mut b: DuplexStream, @@ -50,7 +50,7 @@ pub async fn hls_master_stream( } pub async fn hls_variant_stream( - node: Node, + node: Arc, local_tracks: Vec, mut spec: StreamSpec, mut b: DuplexStream, -- cgit v1.2.3-70-g09d2