yield from time to time

Original commit message from CVS:
yield from time to time
This commit is contained in:
Thomas Vander Stichele 2002-05-25 18:03:10 +00:00
parent c5df5242c2
commit 6d1b431627

View file

@ -479,6 +479,8 @@ gst_adder_loop (GstElement *element)
GST_DEBUG (0, "pushing buf_out");
gst_pad_push (adder->srcpad, buf_out);
/* give another element a chance to do something */
gst_element_yield (element);
} while (TRUE);
}