Original commit message from CVS:
* gst-libs/gst/rtp/gstbasertppayload.c:
(gst_basertppayload_class_init), (gst_basertppayload_init),
(gst_basertppayload_setcaps), (gst_basertppayload_chain),
(gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
(gst_basertppayload_push), (gst_basertppayload_get_property),
(gst_basertppayload_change_state):
Posting ERROR and WARNING messages is good.
+2005-09-19 Wim Taymans <wim@fluendo.com>
+
+ * gst-libs/gst/rtp/gstbasertppayload.c:
+ (gst_basertppayload_class_init), (gst_basertppayload_init),
+ (gst_basertppayload_setcaps), (gst_basertppayload_chain),
+ (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
+ (gst_basertppayload_push), (gst_basertppayload_get_property),
+ (gst_basertppayload_change_state):
+ Posting ERROR and WARNING messages is good.
+
2005-09-19 Wim Taymans <wim@fluendo.com>
* gst-libs/gst/rtp/gstbasertpdepayload.c:
-Subproject commit eac450a673cd1d3a606fe75399d0cd1fcb1d0d7b
+Subproject commit 13022c3cb4558d201e2ddf3e65d2e36b16eedc4a
/* ERRORS */
no_function:
{
- GST_DEBUG ("subclass did not implement handle_buffer function");
+ GST_ELEMENT_ERROR (basertppayload, STREAM, NOT_IMPLEMENTED, (NULL),
+ ("subclass did not implement handle_buffer function"));
gst_object_unref (basertppayload);
return GST_FLOW_ERROR;
}
/* ERRORS */
no_rate:
{
- GST_DEBUG ("subclass did not specify clock_rate");
+ GST_ELEMENT_ERROR (payload, STREAM, NOT_IMPLEMENTED, (NULL),
+ ("subclass did not specify clock_rate"));
gst_buffer_unref (buffer);
return GST_FLOW_ERROR;
}