clock: remove assertion

Remove an assertion, this is not really an error in all cases.
Fixes #582010
This commit is contained in:
Wim Taymans 2009-05-25 16:54:25 +02:00
parent cabc9cbbef
commit 03037d56f4

View file

@ -935,7 +935,6 @@ gst_clock_set_calibration (GstClock * clock, GstClockTime internal, GstClockTime
g_return_if_fail (GST_IS_CLOCK (clock));
g_return_if_fail (rate_num != GST_CLOCK_TIME_NONE);
g_return_if_fail (rate_denom > 0 && rate_denom != GST_CLOCK_TIME_NONE);
g_return_if_fail (internal <= gst_clock_get_internal_time (clock));
write_seqlock (clock);
GST_CAT_DEBUG_OBJECT (GST_CAT_CLOCK, clock,