mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-03 11:50:29 +00:00
FS-7656 not quite right
This commit is contained in:
parent
c48a83a3e1
commit
a647b42910
@ -375,17 +375,18 @@ static void *SWITCH_THREAD_FUNC read_stream_thread(switch_thread_t *thread, void
|
|||||||
|
|
||||||
if (source->total == 1) {
|
if (source->total == 1) {
|
||||||
switch_queue_push(source->context_list->video_q, img);
|
switch_queue_push(source->context_list->video_q, img);
|
||||||
} else if (source->context_list) {
|
} else {
|
||||||
for (cp = source->context_list; cp && RUNNING; cp = cp->next) {
|
if (source->context_list) {
|
||||||
if (cp->video_q) {
|
for (cp = source->context_list; cp && RUNNING; cp = cp->next) {
|
||||||
imgcp = NULL;
|
if (cp->video_q) {
|
||||||
switch_img_copy(img, &imgcp);
|
imgcp = NULL;
|
||||||
if (imgcp) {
|
switch_img_copy(img, &imgcp);
|
||||||
switch_queue_push(cp->video_q, imgcp);
|
if (imgcp) {
|
||||||
|
switch_queue_push(cp->video_q, imgcp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
switch_img_free(&img);
|
switch_img_free(&img);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user