diff --git a/ChangeLog b/ChangeLog index 7d44747502..083ec856a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-12-05 Andy Wingo + + patch by: Kai Vehmanen + + * gst-libs/gst/rtp/gstbasertpdepayload.c + (gst_base_rtp_depayload_thread): Fix busy loop (#323017). + 2005-12-04 Andy Wingo patch by: Sebastien Cote diff --git a/gst-libs/gst/rtp/gstbasertpdepayload.c b/gst-libs/gst/rtp/gstbasertpdepayload.c index d6517c7f83..a7477e4acd 100644 --- a/gst-libs/gst/rtp/gstbasertpdepayload.c +++ b/gst-libs/gst/rtp/gstbasertpdepayload.c @@ -361,7 +361,8 @@ gst_base_rtp_depayload_thread (GstBaseRTPDepayload * filter) while (filter->thread_running) { gst_base_rtp_depayload_queue_release (filter); /* i want to run this thread clock_rate times per second */ - gst_base_rtp_depayload_wait (filter, GST_NSECOND / filter->clock_rate); + /* sleep for 5msec */ + gst_base_rtp_depayload_wait (filter, GST_MSECOND * 5); } return NULL; }