diff --git a/crates/punktfunk-host/src/punktfunk1.rs b/crates/punktfunk-host/src/punktfunk1.rs index 5c4faccf..2cd6ec6a 100644 --- a/crates/punktfunk-host/src/punktfunk1.rs +++ b/crates/punktfunk-host/src/punktfunk1.rs @@ -895,14 +895,12 @@ async fn serve_session( // stance as the GameStream Main10 advertisement). let host_wants_10bit = crate::config::config().ten_bit; let client_supports_10bit = hello.video_caps & punktfunk_core::quic::VIDEO_CAP_10BIT != 0; - let bit_depth: u8 = if host_wants_10bit - && client_supports_10bit - && codec == crate::encode::Codec::H265 - { - 10 - } else { - 8 - }; + let bit_depth: u8 = + if host_wants_10bit && client_supports_10bit && codec == crate::encode::Codec::H265 { + 10 + } else { + 8 + }; tracing::info!( bit_depth, host_wants_10bit,