diff --git a/gst-meet/src/main.rs b/gst-meet/src/main.rs index a287141..d2fe817 100644 --- a/gst-meet/src/main.rs +++ b/gst-meet/src/main.rs @@ -171,8 +171,8 @@ async fn main_inner() -> Result<()> { .map(|endpoints| endpoints.split(',').map(ToOwned::to_owned).collect()), on_stage_endpoints: None, default_constraints: opt.recv_video_height.map(|height| Constraints { - ideal_height: Some(height), - max_height: None, + max_height: Some(height), + ideal_height: None, }), constraints: None, })