mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gst-libs/gst/rtp/gstbasertpdepayload.c: Add some more docs for the queue-delay property and fix a typo in a comment.
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.
This commit is contained in:
parent
c2460052b3
commit
0cfb3152b9
3 changed files with 22 additions and 3 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
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>
|
2007-09-03 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
* gst-libs/gst/audio/gstbaseaudiosink.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->set_property = gst_base_rtp_depayload_set_property;
|
||||||
gobject_class->get_property = gst_base_rtp_depayload_get_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_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,
|
"Amount of ms to queue/buffer, deprecated", 0, G_MAXUINT,
|
||||||
DEFAULT_QUEUE_DELAY, G_PARAM_READWRITE));
|
DEFAULT_QUEUE_DELAY, G_PARAM_READWRITE));
|
||||||
|
|
||||||
|
@ -423,7 +431,7 @@ gst_base_rtp_depayload_set_gst_timestamp (GstBaseRTPDepayload * filter,
|
||||||
|
|
||||||
GST_BUFFER_TIMESTAMP (buf) = ts;
|
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) {
|
if (filter->need_newsegment) {
|
||||||
GstEvent *event;
|
GstEvent *event;
|
||||||
GstClockTime stop, position;
|
GstClockTime stop, position;
|
||||||
|
|
|
@ -636,7 +636,7 @@ gst_basertppayload_push (GstBaseRTPPayload * payload, GstBuffer * buffer)
|
||||||
no_rate:
|
no_rate:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (payload, STREAM, NOT_IMPLEMENTED, (NULL),
|
GST_ELEMENT_ERROR (payload, STREAM, NOT_IMPLEMENTED, (NULL),
|
||||||
("subclass did not specify clock_rate"));
|
("subclass did not specify clock-rate"));
|
||||||
gst_buffer_unref (buffer);
|
gst_buffer_unref (buffer);
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue