diff --git a/crates/wzp-android/src/engine.rs b/crates/wzp-android/src/engine.rs index 18450be..8e84de4 100644 --- a/crates/wzp-android/src/engine.rs +++ b/crates/wzp-android/src/engine.rs @@ -311,6 +311,9 @@ async fn run_call( ephemeral_pub, signature, supported_profiles: vec![ + QualityProfile::STUDIO_64K, + QualityProfile::STUDIO_48K, + QualityProfile::STUDIO_32K, QualityProfile::GOOD, QualityProfile::DEGRADED, QualityProfile::CATASTROPHIC, diff --git a/crates/wzp-client/src/handshake.rs b/crates/wzp-client/src/handshake.rs index 7a83edc..e7faf52 100644 --- a/crates/wzp-client/src/handshake.rs +++ b/crates/wzp-client/src/handshake.rs @@ -38,6 +38,9 @@ pub async fn perform_handshake( ephemeral_pub, signature, supported_profiles: vec![ + QualityProfile::STUDIO_64K, + QualityProfile::STUDIO_48K, + QualityProfile::STUDIO_32K, QualityProfile::GOOD, QualityProfile::DEGRADED, QualityProfile::CATASTROPHIC,