diff --git a/ChangeLog b/ChangeLog index 9871d6dcea..1bb47182f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2007-09-03 Wim Taymans + + * gst-libs/gst/rtp/gstbasertpdepayload.c: + (gst_base_rtp_depayload_class_init), + (gst_base_rtp_depayload_set_gst_timestamp): + Add some more docs for the queue-delay property and fix a typo in a + comment. + + * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push): + Fix typo. + 2007-09-03 Wim Taymans * gst-libs/gst/audio/gstbaseaudiosink.c: diff --git a/gst-libs/gst/rtp/gstbasertpdepayload.c b/gst-libs/gst/rtp/gstbasertpdepayload.c index db92cecd87..695b3e4f17 100644 --- a/gst-libs/gst/rtp/gstbasertpdepayload.c +++ b/gst-libs/gst/rtp/gstbasertpdepayload.c @@ -116,8 +116,16 @@ gst_base_rtp_depayload_class_init (GstBaseRTPDepayloadClass * klass) gobject_class->set_property = gst_base_rtp_depayload_set_property; gobject_class->get_property = gst_base_rtp_depayload_get_property; + /** + * GstBaseRTPDepayload::queue-delay + * + * Control the amount of packets to buffer. + * + * Deprecated: Use a jitterbuffer or RTP session manager to delay packet + * playback. This property has no effect anymore since 0.10.15. + */ g_object_class_install_property (gobject_class, PROP_QUEUE_DELAY, - g_param_spec_uint ("queue_delay", "Queue Delay", + g_param_spec_uint ("queue-delay", "Queue Delay", "Amount of ms to queue/buffer, deprecated", 0, G_MAXUINT, DEFAULT_QUEUE_DELAY, G_PARAM_READWRITE)); @@ -423,7 +431,7 @@ gst_base_rtp_depayload_set_gst_timestamp (GstBaseRTPDepayload * filter, GST_BUFFER_TIMESTAMP (buf) = ts; - /* if this is the first buf send a NEWSEGMENT */ + /* if this is the first buffer send a NEWSEGMENT */ if (filter->need_newsegment) { GstEvent *event; GstClockTime stop, position; diff --git a/gst-libs/gst/rtp/gstbasertppayload.c b/gst-libs/gst/rtp/gstbasertppayload.c index da74ca4971..9314e805d6 100644 --- a/gst-libs/gst/rtp/gstbasertppayload.c +++ b/gst-libs/gst/rtp/gstbasertppayload.c @@ -636,7 +636,7 @@ gst_basertppayload_push (GstBaseRTPPayload * payload, GstBuffer * buffer) no_rate: { GST_ELEMENT_ERROR (payload, STREAM, NOT_IMPLEMENTED, (NULL), - ("subclass did not specify clock_rate")); + ("subclass did not specify clock-rate")); gst_buffer_unref (buffer); return GST_FLOW_ERROR; }