gst-libs/gst/rtp/gstbasertpdepayload.c: Add some more docs for the queue-delay proper...
authorWim Taymans <wim.taymans@gmail.com>
Mon, 3 Sep 2007 19:19:35 +0000 (19:19 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Mon, 3 Sep 2007 19:19:35 +0000 (19:19 +0000)
Original commit message from CVS:
* 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.

ChangeLog
gst-libs/gst/rtp/gstbasertpdepayload.c
gst-libs/gst/rtp/gstbasertppayload.c

index 9871d6d..1bb4718 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
 
+       * 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  <wim.taymans@gmail.com>
+
        * gst-libs/gst/audio/gstbaseaudiosink.c:
        (gst_base_audio_sink_skew_slaving), (gst_base_audio_sink_render),
        (gst_base_audio_sink_change_state):
index db92cec..695b3e4 100644 (file)
@@ -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;
index da74ca4..9314e80 100644 (file)
@@ -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;
   }