]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-10447: [freeswitch-core] Manual video refresh mode #resolve
authorAnthony Minessale <anthm@freeswitch.org>
Thu, 29 Jun 2017 21:57:13 +0000 (16:57 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Thu, 29 Jun 2017 21:57:18 +0000 (16:57 -0500)
src/include/switch_core.h
src/include/switch_types.h
src/mod/applications/mod_commands/mod_commands.c
src/mod/applications/mod_dptools/mod_dptools.c
src/mod/endpoints/mod_sofia/mod_sofia.c
src/switch_core_media.c

index 60249f88c24552546181e71c43fa4b3e23139d15..a07ea36a1ea69618084f1d9f2a2e86e566b9fd8d 100644 (file)
@@ -2758,8 +2758,9 @@ SWITCH_DECLARE(int) switch_core_gen_certs(const char *prefix);
 SWITCH_DECLARE(int) switch_core_cert_gen_fingerprint(const char *prefix, dtls_fingerprint_t *fp);
 SWITCH_DECLARE(int) switch_core_cert_expand_fingerprint(dtls_fingerprint_t *fp, const char *str);
 SWITCH_DECLARE(int) switch_core_cert_verify(dtls_fingerprint_t *fp);
-SWITCH_DECLARE(switch_status_t) _switch_core_session_request_video_refresh(switch_core_session_t *session, const char *file, const char *func, int line);
-#define switch_core_session_request_video_refresh(_s) _switch_core_session_request_video_refresh(_s, __FILE__, __SWITCH_FUNC__, __LINE__)
+SWITCH_DECLARE(switch_status_t) _switch_core_session_request_video_refresh(switch_core_session_t *session, int force, const char *file, const char *func, int line);
+#define switch_core_session_request_video_refresh(_s) _switch_core_session_request_video_refresh(_s, 0, __FILE__, __SWITCH_FUNC__, __LINE__)
+#define switch_core_session_force_request_video_refresh(_s) _switch_core_session_request_video_refresh(_s, 1, __FILE__, __SWITCH_FUNC__, __LINE__)
 SWITCH_DECLARE(switch_status_t) switch_core_session_send_and_request_video_refresh(switch_core_session_t *session);
 SWITCH_DECLARE(int) switch_system(const char *cmd, switch_bool_t wait);
 SWITCH_DECLARE(int) switch_stream_system_fork(const char *cmd, switch_stream_handle_t *stream);
index 2cc1000e2fa1dd3ec6d1c7eaf9642ec6f68d56c5..c5cd77584f7fde6c085561a5925b38d8e46acfa2 100644 (file)
@@ -1457,6 +1457,7 @@ typedef enum {
        CF_INTERCEPT,
        CF_INTERCEPTED,
        CF_VIDEO_REFRESH_REQ,
+       CF_MANUAL_VID_REFRESH,
        CF_SERVICE_AUDIO,
        CF_SERVICE_VIDEO,
        CF_ZRTP_PASSTHRU_REQ,
index 758e8c95702c9ece43e4bdec6e81a0842a68c7ec..e592b3fabcd5c68e6cd87416732e86145d8adb36 100644 (file)
@@ -4203,7 +4203,7 @@ SWITCH_STANDARD_API(uuid_xfer_zombie)
        return SWITCH_STATUS_SUCCESS;
 }
 
-#define VIDEO_REFRESH_SYNTAX "<uuid>"
+#define VIDEO_REFRESH_SYNTAX "<uuid> [auto|manual]"
 SWITCH_STANDARD_API(uuid_video_refresh_function)
 {
        switch_status_t status = SWITCH_STATUS_FALSE;
@@ -4220,11 +4220,28 @@ SWITCH_STANDARD_API(uuid_video_refresh_function)
                switch_core_session_t *lsession = NULL;
 
                if ((lsession = switch_core_session_locate(argv[0]))) {
-                       switch_channel_set_flag(switch_core_session_get_channel(lsession), CF_XFER_ZOMBIE);
-                       switch_core_session_request_video_refresh(lsession);
-                       switch_core_media_gen_key_frame(lsession);
+                       char *cmd = (char *)argv[1];
+       
+                       if (!zstr(cmd)) {
+                               switch_channel_t *channel = switch_core_session_get_channel(lsession);
+                               
+                               if (!strcasecmp(cmd, "manual")) {
+                                       switch_channel_set_flag(channel, CF_MANUAL_VID_REFRESH);
+                               } else if (!strcasecmp(cmd, "auto")) {
+                                       switch_channel_clear_flag(channel, CF_MANUAL_VID_REFRESH);
+                               }
+
+                               stream->write_function(stream, "%s video refresh now in %s mode.\n", switch_channel_get_name(channel),
+                                                                          switch_channel_test_flag(channel, CF_MANUAL_VID_REFRESH) ? "manual" : "auto");
+
+                       } else {
+                               switch_core_session_force_request_video_refresh(lsession);
+                               switch_core_media_gen_key_frame(lsession);
+                       }
+
                        status = SWITCH_STATUS_SUCCESS;
                        switch_core_session_rwunlock(lsession);
+
                }
        }
 
index 6daddfcdc50ba56882c8325fec8e90ce18068651..3f28d3ba04da528239693dc48f009b2e9b5888bd 100644 (file)
@@ -1431,9 +1431,27 @@ SWITCH_STANDARD_APP(video_set_decode_function)
 SWITCH_STANDARD_APP(video_refresh_function)
 {
        switch_core_session_message_t msg = { 0 };
+       char *cmd = (char *)data;
+       
+       if (!zstr(cmd)) {
+               switch_channel_t *channel = switch_core_session_get_channel(session);
+
+               if (!strcasecmp(cmd, "manual")) {
+                       switch_channel_set_flag(channel, CF_MANUAL_VID_REFRESH);
+               } else if (!strcasecmp(cmd, "auto")) {
+                       switch_channel_clear_flag(channel, CF_MANUAL_VID_REFRESH);
+               }
+               
+               switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, 
+                                                 "%s video refresh now in %s mode.\n", switch_channel_get_name(channel), 
+                                                 switch_channel_test_flag(channel, CF_MANUAL_VID_REFRESH) ? "manual" : "auto");        
 
+               return;
+       }
+       
        /* Tell the channel to refresh video */
        msg.from = __FILE__;
+       msg.numeric_arg = 1;
        msg.string_arg = data;
        msg.message_id = SWITCH_MESSAGE_INDICATE_VIDEO_REFRESH_REQ;
        switch_core_session_receive_message(session, &msg);
@@ -6321,7 +6339,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_dptools_load)
        SWITCH_ADD_APP(app_interface, "ivr", "Run an ivr menu", "Run an ivr menu.", ivr_application_function, "<menu_name>", SAF_NONE);
        SWITCH_ADD_APP(app_interface, "redirect", "Send session redirect", "Send a redirect message to a session.", redirect_function, "<redirect_data>",
                                   SAF_SUPPORT_NOMEDIA);
-       SWITCH_ADD_APP(app_interface, "video_refresh", "Send video refresh.", "Send video refresh.", video_refresh_function, "",
+       SWITCH_ADD_APP(app_interface, "video_refresh", "Send video refresh.", "Send video refresh.", video_refresh_function, "[manual|auto]",
                                   SAF_SUPPORT_NOMEDIA);
        SWITCH_ADD_APP(app_interface, "video_decode", "Set video decode.", "Set video decode.", video_set_decode_function, "[[on|wait]|off]",
                                   SAF_NONE);
index 03e20717ce7de680cb8b3084f1167be1709b7527..439aed271895474d6b2ce7ada4e249b67c50709a 100644 (file)
@@ -1528,7 +1528,7 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
                break;
 
        case SWITCH_MESSAGE_INDICATE_VIDEO_REFRESH_REQ:
-               if (switch_channel_media_up(channel) && !switch_channel_test_flag(channel, CF_AVPF) &&
+               if (switch_channel_media_up(channel) && !switch_channel_test_flag(channel, CF_AVPF) && !switch_channel_test_flag(channel, CF_MANUAL_VID_REFRESH) &&
                        switch_channel_var_true(channel, "sofia_send_info_vid_refresh")) {
                        const char *pl = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<media_control><vc_primitive><to_encoder><picture_fast_update /></to_encoder></vc_primitive></media_control>\n";
                        switch_time_t now = switch_micro_time_now();
index 429d4693d6ef17685a15c9413a0e4e1a8de32181..d2d70add991778612707d69917ba302d0d69713e 100644 (file)
@@ -11997,13 +11997,15 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_receive_message(switch_core_se
        case SWITCH_MESSAGE_INDICATE_VIDEO_REFRESH_REQ:
                {
                        if (v_engine->rtp_session) {
-                               if (switch_rtp_test_flag(v_engine->rtp_session, SWITCH_RTP_FLAG_FIR)) {
-                                       switch_rtp_video_refresh(v_engine->rtp_session);
-                               }// else {
+                               if (msg->numeric_arg || !switch_channel_test_flag(session->channel, CF_MANUAL_VID_REFRESH)) {
+                                       if (switch_rtp_test_flag(v_engine->rtp_session, SWITCH_RTP_FLAG_FIR)) {
+                                               switch_rtp_video_refresh(v_engine->rtp_session);
+                                       }// else {
                                        if (switch_rtp_test_flag(v_engine->rtp_session, SWITCH_RTP_FLAG_PLI)) {
                                                switch_rtp_video_loss(v_engine->rtp_session);
                                        }
-                                       //                              }
+                                       //}
+                               }
                        }
                }
 
@@ -13720,7 +13722,7 @@ SWITCH_DECLARE(switch_timer_t *) switch_core_media_get_timer(switch_core_session
 
 }
 
-SWITCH_DECLARE(switch_status_t) _switch_core_session_request_video_refresh(switch_core_session_t *session, const char *file, const char *func, int line)
+SWITCH_DECLARE(switch_status_t) _switch_core_session_request_video_refresh(switch_core_session_t *session, int force, const char *file, const char *func, int line)
 {
        switch_channel_t *channel = switch_core_session_get_channel(session);
        switch_media_handle_t *smh = NULL;
@@ -13735,11 +13737,16 @@ SWITCH_DECLARE(switch_status_t) _switch_core_session_request_video_refresh(switc
                switch_core_session_message_t msg = { 0 };
                switch_time_t now = switch_micro_time_now();
 
-               if (smh->last_video_refresh_req && (now - smh->last_video_refresh_req) < VIDEO_REFRESH_FREQ) {
+               if (!force && (smh->last_video_refresh_req && (now - smh->last_video_refresh_req) < VIDEO_REFRESH_FREQ)) {
                        return SWITCH_STATUS_BREAK;
                }
 
                smh->last_video_refresh_req = now;
+
+               if (force) {
+                       msg.numeric_arg = 1;
+               }
+
                msg._file = file;
                msg._func = func;
                msg._line = line;