mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-25 20:19:36 +00:00
FS-10871: [mod_conference] Zoomed layouts do not auto-center in mod_conference #resolve
This commit is contained in:
parent
fe05bacb84
commit
16a31c4be5
@ -743,7 +743,7 @@ void conference_video_scale_and_patch(mcu_layer_t *layer, switch_image_t *ximg,
|
|||||||
} else {
|
} else {
|
||||||
crop_x = use_geometry->x;
|
crop_x = use_geometry->x;
|
||||||
}
|
}
|
||||||
} else if (screen_aspect > img_aspect) {
|
} else if (screen_aspect < img_aspect) {
|
||||||
crop_x = img->d_w / 4;
|
crop_x = img->d_w / 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -753,7 +753,7 @@ void conference_video_scale_and_patch(mcu_layer_t *layer, switch_image_t *ximg,
|
|||||||
} else {
|
} else {
|
||||||
crop_y = use_geometry->y;
|
crop_y = use_geometry->y;
|
||||||
}
|
}
|
||||||
} else if (screen_aspect < img_aspect) {
|
} else if (screen_aspect > img_aspect) {
|
||||||
crop_y = img->d_h / 4;
|
crop_y = img->d_h / 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user