diff --git a/net/webrtc/src/utils.rs b/net/webrtc/src/utils.rs index c32282526..a286e00b7 100644 --- a/net/webrtc/src/utils.rs +++ b/net/webrtc/src/utils.rs @@ -586,6 +586,11 @@ impl Codec { "rtpvp8pay" | "rtpvp9pay" => { res = res.property_from_str("picture-id-mode", "15-bit"); } + "rtph264pay" | "rtph265pay" => { + res = res + .property_from_str("aggregate-mode", "zero-latency") + .property("config-interval", -1i32); + } _ => (), }