<span class="sharediv">
<button data-inline="true" id="smallerbtn">Smaller - </button>
<button data-inline="true" id="biggerbtn">Bigger +</button>
- <button data-inline="true" id="fullbtn">Full Screen</button>
- <button data-inline="true" id="nofullbtn">Exit Full Screen</button>
+ <button data-inline="true" id="fullbtn">Enter Full Screen</button>
<button data-inline="true" id="vmutebtn">Toggle Video Mute</button>
</span>
</fieldset>
</div><br clear="all"><br>
+ <label><input id="use_dedenc" type="checkbox" value="foo" > Use Dedicated Remote Encoder</label>
+ <label><input id="mirror_input" type="checkbox" value="foo" >Scale Remote Video To Match Camera</label>
<br><br>
<center><button data-inline="true" id="refreshbtn">Refresh Device List</button>
<button data-inline="true" id="hidedevices" onclick="$('#devices').hide();$('#showdevices').show()">Save Device Settings</button>
var usrto;
function noop() { return; }
-$("#nofullbtn").click(function() {
-
- if (document.webkitFullscreenEnabled) {
- document.webkitExitFullscreen();
- } else if (document.mozFullScreenEnabled) {
- document.mozExitFullScreen();
- }
-
-
-});
-
function on_full(which)
{
is_full = which;
$("#fullbtn").click(function() {
- full_screen("fs");
+ if (!is_full) {
+ full_screen("fs");
+ $("#fullbtn").text("Exit Full Screen");
+ } else {
+ $("#fullbtn").text("Enter Full Screen");
+ if (document.webkitFullscreenEnabled) {
+ document.webkitExitFullscreen();
+ } else if (document.mozFullScreenEnabled) {
+ document.mozExitFullScreen();
+ }
+
+ }
// $("#mod1").css("position", "absolute").css("z-index", "2");
useVideo: check_vid(),
useStereo: $("#use_stereo").is(':checked'),
useCamera: $("#usecamera").find(":selected").val(),
- useMic: $("#usemic").find(":selected").val()
+ useMic: $("#usemic").find(":selected").val(),
+ dedEnc: $("#use_dedenc").is(':checked'),
+ mirrorInput: $("#mirror_input").is(':checked')
});
}
incomingBandwidth: incomingBandwidth,
useCamera: sharedev,
useVideo: true,
- screenShare: true
+ screenShare: true,
+ dedEnc: $("#use_dedenc").is(':checked'),
+ mirrorInput: $("#mirror_input").is(':checked')
});
return;
incomingBandwidth: incomingBandwidth,
videoParams: screen_constraints.video.mandatory,
useVideo: true,
- screenShare: true
+ screenShare: true,
+ dedEnc: $("#use_dedenc").is(':checked'),
+ mirrorInput: $("#mirror_input").is(':checked')
});
});
});
});
+
+ tmp = $.cookie("verto_demo_dedenc_checked") || "false";
+ $.cookie("verto_demo_dedenc_checked", tmp, {
+ expires: 365
+ });
+
+ $("#use_dedenc").prop("checked", tmp === "true").change(function(e) {
+ tmp = $("#use_dedenc").is(':checked');
+
+ if (!tmp && $("#mirror_input").is(':checked')) {
+ $("#mirror_input").click();
+ }
+
+ $.cookie("verto_demo_dedenc_checked", tmp ? "true" : "false", {
+ expires: 365
+ });
+ });
+
+
+ tmp = $.cookie("verto_demo_mirror_input_checked") || "false";
+ $.cookie("verto_demo_mirror_input_checked", tmp, {
+ expires: 365
+ });
+
+ $("#mirror_input").prop("checked", tmp === "true").change(function(e) {
+ tmp = $("#mirror_input").is(':checked');
+ if (tmp && !$("#use_dedenc").is(':checked')) {
+ $("#use_dedenc").click();
+ }
+ $.cookie("verto_demo_mirror_input_checked", tmp ? "true" : "false", {
+ expires: 365
+ });
+ });
+
//
outgoingBandwidth = $.cookie("verto_demo_outgoingBandwidth") || "default";
$.cookie("verto_demo_outgoingBandwidth", outgoingBandwidth, {
CF_VIDEO_DEBUG_WRITE,
CF_VIDEO_ONLY,
CF_VIDEO_READY,
+ CF_VIDEO_MIRROR_INPUT,
/* WARNING: DO NOT ADD ANY FLAGS BELOW THIS LINE */
/* IF YOU ADD NEW ONES CHECK IF THEY SHOULD PERSIST OR ZERO THEM IN switch_core_session.c switch_core_session_request_xml() */
CF_FLAG_MAX
member->video_reservation_id = switch_core_strdup(member->pool, var);
}
+ if ((var = switch_channel_get_variable(channel, "video_use_dedicated_encoder")) && switch_true(var)) {
+ switch_set_flag_locked(member, MFLAG_NO_MINIMIZE_ENCODING);
+ }
+
switch_channel_set_variable_printf(channel, "conference_member_id", "%d", member->id);
switch_channel_set_variable_printf(channel, "conference_moderator", "%s", switch_test_flag(member, MFLAG_MOD) ? "true" : "false");
switch_channel_set_variable_printf(channel, "conference_ghost", "%s", switch_test_flag(member, MFLAG_GHOST) ? "true" : "false");
static switch_bool_t verto__invite_func(const char *method, cJSON *params, jsock_t *jsock, cJSON **response)
{
- cJSON *obj = cJSON_CreateObject(), *screenShare = NULL;
+ cJSON *obj = cJSON_CreateObject(), *screenShare = NULL, *dedEnc = NULL, *mirrorInput;
switch_core_session_t *session = NULL;
switch_channel_t *channel;
switch_event_t *var_event;
switch_channel_set_flag(channel, CF_VIDEO_ONLY);
}
+ if ((dedEnc = cJSON_GetObjectItem(dialog, "dedEnc")) && dedEnc->type == cJSON_True) {
+ switch_channel_set_variable(channel, "video_use_dedicated_encoder", "true");
+ }
+
+ if ((mirrorInput = cJSON_GetObjectItem(dialog, "mirrorInput")) && mirrorInput->type == cJSON_True) {
+ switch_channel_set_variable(channel, "video_mirror_input", "true");
+ switch_channel_set_flag(channel, CF_VIDEO_MIRROR_INPUT);
+ }
+
if ((bandwidth = cJSON_GetObjectCstr(dialog, "outgoingBandwidth"))) {
if (strcasecmp(bandwidth, "default")) {
switch_channel_set_variable(channel, "rtp_video_max_bandwidth_in", bandwidth);
switch_codec_t *codec = switch_core_session_get_video_write_codec(session);
switch_timer_t *timer;
switch_media_handle_t *smh;
- switch_image_t *img = frame->img;
+ switch_image_t *dup_img = NULL, *img = frame->img;
switch_status_t encode_status;
switch_frame_t write_frame = {0};
//switch_rtp_engine_t *v_engine;
switch_goto_status(vstatus, done);
}
+ /* When desired, scale video to match the input signal (if output is bigger) */
+ if (switch_channel_test_flag(session->channel, CF_VIDEO_READY) && smh->vid_params.width &&
+ switch_channel_test_flag(session->channel, CF_VIDEO_MIRROR_INPUT) &&
+ (smh->vid_params.width * smh->vid_params.height) < (img->d_w * img->d_h)) {
+ switch_img_scale(img, &dup_img, smh->vid_params.width, smh->vid_params.height);
+ img = dup_img;
+ }
+
write_frame = *frame;
frame = &write_frame;
frame->img = img;
switch_mutex_unlock(smh->write_mutex[SWITCH_MEDIA_TYPE_VIDEO]);
}
+ switch_img_free(&dup_img);
+
return status;
}