mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-05-02 06:38:04 +00:00
FS-9495 #resolve [add conference_join_energy_level variable]
This commit is contained in:
parent
baccbea1f1
commit
71c54d6f3a
@ -743,7 +743,7 @@ switch_status_t conference_member_add(conference_obj_t *conference, conference_m
|
|||||||
conference_video_check_avatar(member, SWITCH_FALSE);
|
conference_video_check_avatar(member, SWITCH_FALSE);
|
||||||
|
|
||||||
if ((var = switch_channel_get_variable_dup(member->channel, "conference_join_volume_in", SWITCH_FALSE, -1))) {
|
if ((var = switch_channel_get_variable_dup(member->channel, "conference_join_volume_in", SWITCH_FALSE, -1))) {
|
||||||
uint32_t id = atoi(var) - 1;
|
uint32_t id = atoi(var);
|
||||||
|
|
||||||
if (id > -5 && id < 5) {
|
if (id > -5 && id < 5) {
|
||||||
member->volume_in_level = id;
|
member->volume_in_level = id;
|
||||||
@ -751,13 +751,22 @@ switch_status_t conference_member_add(conference_obj_t *conference, conference_m
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((var = switch_channel_get_variable_dup(member->channel, "conference_join_volume_out", SWITCH_FALSE, -1))) {
|
if ((var = switch_channel_get_variable_dup(member->channel, "conference_join_volume_out", SWITCH_FALSE, -1))) {
|
||||||
uint32_t id = atoi(var) - 1;
|
uint32_t id = atoi(var);
|
||||||
|
|
||||||
if (id > -5 && id < 5) {
|
if (id > -5 && id < 5) {
|
||||||
member->volume_out_level = id;
|
member->volume_out_level = id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if ((var = switch_channel_get_variable_dup(member->channel, "conference_join_energy_level", SWITCH_FALSE, -1))) {
|
||||||
|
uint32_t id = atoi(var);
|
||||||
|
|
||||||
|
if (id > -5 && id < 5) {
|
||||||
|
member->energy_level = id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ((var = switch_channel_get_variable_dup(member->channel, "video_initial_canvas", SWITCH_FALSE, -1))) {
|
if ((var = switch_channel_get_variable_dup(member->channel, "video_initial_canvas", SWITCH_FALSE, -1))) {
|
||||||
uint32_t id = atoi(var) - 1;
|
uint32_t id = atoi(var) - 1;
|
||||||
if (id < conference->canvas_count) {
|
if (id < conference->canvas_count) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user