]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7513: revert
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 4 Mar 2015 18:09:43 +0000 (12:09 -0600)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:47:08 +0000 (12:47 -0500)
src/mod/applications/mod_conference/mod_conference.c

index 29e7e9b9e6e353f0bea93c065281c9ac1384e891..0704076dff2db92289197e08fefc5ed4a185b260 100644 (file)
@@ -1595,6 +1595,7 @@ static void *SWITCH_THREAD_FUNC conference_video_muxing_write_thread_run(switch_
 {
        conference_member_t *member = (conference_member_t *) obj;
        void *pop;
+       int loops = 0;
 
        while(switch_test_flag(member, MFLAG_RUNNING) || switch_queue_size(member->mux_out_queue)) {
                switch_frame_t *frame;
@@ -1603,6 +1604,12 @@ static void *SWITCH_THREAD_FUNC conference_video_muxing_write_thread_run(switch_
                        if (switch_queue_pop(member->mux_out_queue, &pop) == SWITCH_STATUS_SUCCESS) {
                                if (!pop) continue;
 
+                               if (loops == 0 || loops == 50) {
+                                       switch_core_media_gen_key_frame(member->session);
+                                       switch_core_session_request_video_refresh(member->session);
+                               }
+                               loops++;
+
                                frame = (switch_frame_t *) pop;
                                if (switch_test_flag(frame, SFF_ENCODED)) {
                                        switch_core_session_write_encoded_video_frame(member->session, frame, 0, 0);