diff --git a/crates/video-streamer/src/streamer/tag_writers.rs b/crates/video-streamer/src/streamer/tag_writers.rs index f829b5a71..a2a0e25b5 100644 --- a/crates/video-streamer/src/streamer/tag_writers.rs +++ b/crates/video-streamer/src/streamer/tag_writers.rs @@ -47,7 +47,10 @@ where Ok(()) } - pub(crate) fn into_encoded_writer(self, config: EncodeWriterConfig) -> anyhow::Result<(CutCusterWriter, CutBlockHitMarker)> { + pub(crate) fn into_encoded_writer( + self, + config: EncodeWriterConfig, + ) -> anyhow::Result<(CutCusterWriter, CutBlockHitMarker)> { let encoded_writer = CutCusterWriter::new(config, self)?; Ok(encoded_writer) }