Original commit message from CVS:
Fixed a small problem.
+2005-11-04 Zeeshan Ali <zeenix@gmail.com>
+
+ * gst-libs/gst/rtp/gstbasertpdepayload.c:
+ (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
+ Fixed a small problem.
+
2005-11-04 Wim Taymans <wim@fluendo.com>
* examples/seeking/Makefile.am:
{
GstClockID id;
- g_return_if_fail (filter->clock != NULL);
g_return_if_fail (GST_CLOCK_TIME_IS_VALID (time));
+ if (filter->clock == NULL) {
+ GST_DEBUG_OBJECT (filter, "No clock given yet");
+ return;
+ }
id = gst_clock_new_single_shot_id (filter->clock, time);