From bc1a2cdbb6b5b3291450e5ae23024a0a0a35634b Mon Sep 17 00:00:00 2001 From: mark Date: Thu, 23 Nov 2006 14:02:43 +0000 Subject: [PATCH] Event loop calls are no longer needed (now we have threading). --- .../modules/gstreamerElements/src/minimal-audio-smil.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/campcaster/src/modules/gstreamerElements/src/minimal-audio-smil.c b/campcaster/src/modules/gstreamerElements/src/minimal-audio-smil.c index d32b1a636..7e1462c75 100644 --- a/campcaster/src/modules/gstreamerElements/src/minimal-audio-smil.c +++ b/campcaster/src/modules/gstreamerElements/src/minimal-audio-smil.c @@ -512,8 +512,6 @@ handle_audio_element(LivesupportMinimalAudioSmil * smil, attr; attr = (xmlAttribute*) attr->next) { - while(g_main_context_pending(NULL)) g_main_context_iteration(NULL,FALSE); - xmlNode * node; /* TODO: support attribute values that are represented with @@ -587,8 +585,6 @@ handle_audio_element(LivesupportMinimalAudioSmil * smil, /* now handle the possible animate elements inside this audio element */ element = pplay; for (ix = 0, node = audio->children; node; node = node->next, ++ix) { - while(g_main_context_pending(NULL)) g_main_context_iteration(NULL,FALSE); - if (node->type == XML_ELEMENT_NODE) { GstElement * elem = 0; @@ -663,8 +659,6 @@ handle_par_element(LivesupportMinimalAudioSmil * smil, for (index = 0, node = par->children; node; node = node->next, ++index) { - while(g_main_context_pending(NULL)) g_main_context_iteration(NULL,FALSE); - if (node->type == XML_ELEMENT_NODE) { GstElement * element = 0; @@ -738,8 +732,6 @@ process_smil_file(LivesupportMinimalAudioSmil * smil) } for (node = node->children; node; node = node->next) { - while(g_main_context_pending(NULL)) g_main_context_iteration(NULL,FALSE); - if (node->type == XML_ELEMENT_NODE) { GstElement * element = 0;