diff options
Diffstat (limited to 'stream/src/fragment.rs')
-rw-r--r-- | stream/src/fragment.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/stream/src/fragment.rs b/stream/src/fragment.rs index 49817ca..89ce94f 100644 --- a/stream/src/fragment.rs +++ b/stream/src/fragment.rs @@ -5,8 +5,8 @@ */ use crate::{stream_info, SMediaInfo}; use anyhow::{anyhow, bail, Result}; -use jellycommon::stream::StreamContainer; use jellyremuxer::{matroska_to_mpeg4, matroska_to_webm::matroska_to_webm}; +use jellystream_types::StreamContainer; use jellytranscoder::fragment::transcode; use log::warn; use std::{ @@ -84,9 +84,7 @@ pub async fn fragment_stream( } }); } - StreamContainer::JVTT => { - - } + StreamContainer::JVTT => {} _ => bail!("not yet supported"), } } else { |