mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
libs/gst/base/gstbasesrc.c: Update some docs.
Original commit message from CVS: * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init): Update some docs.
This commit is contained in:
parent
1be929a4b6
commit
63b0da36b5
2 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-10-16 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init):
|
||||||
|
Update some docs.
|
||||||
|
|
||||||
2008-10-14 Tim-Philipp Müller <tim.muller at collabora co uk>
|
2008-10-14 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||||
|
|
||||||
* gst/gstquark.c: (_priv_gst_quarks_initialize):
|
* gst/gstquark.c: (_priv_gst_quarks_initialize):
|
||||||
|
|
|
@ -328,12 +328,13 @@ gst_base_src_class_init (GstBaseSrcClass * klass)
|
||||||
|
|
||||||
g_object_class_install_property (gobject_class, PROP_BLOCKSIZE,
|
g_object_class_install_property (gobject_class, PROP_BLOCKSIZE,
|
||||||
g_param_spec_ulong ("blocksize", "Block size",
|
g_param_spec_ulong ("blocksize", "Block size",
|
||||||
"Size in bytes to read per buffer (0 = default)", 0, G_MAXULONG,
|
"Size in bytes to read per buffer (-1 = default)", 0, G_MAXULONG,
|
||||||
DEFAULT_BLOCKSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
DEFAULT_BLOCKSIZE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_NUM_BUFFERS,
|
g_object_class_install_property (gobject_class, PROP_NUM_BUFFERS,
|
||||||
g_param_spec_int ("num-buffers", "num-buffers",
|
g_param_spec_int ("num-buffers", "num-buffers",
|
||||||
"Number of buffers to output before sending EOS", -1, G_MAXINT,
|
"Number of buffers to output before sending EOS (-1 = unlimited)",
|
||||||
DEFAULT_NUM_BUFFERS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
-1, G_MAXINT, DEFAULT_NUM_BUFFERS, G_PARAM_READWRITE |
|
||||||
|
G_PARAM_STATIC_STRINGS));
|
||||||
g_object_class_install_property (gobject_class, PROP_TYPEFIND,
|
g_object_class_install_property (gobject_class, PROP_TYPEFIND,
|
||||||
g_param_spec_boolean ("typefind", "Typefind",
|
g_param_spec_boolean ("typefind", "Typefind",
|
||||||
"Run typefind before negotiating", DEFAULT_TYPEFIND,
|
"Run typefind before negotiating", DEFAULT_TYPEFIND,
|
||||||
|
@ -597,7 +598,8 @@ gst_base_src_query_latency (GstBaseSrc * src, gboolean * live,
|
||||||
* @src: the source
|
* @src: the source
|
||||||
* @blocksize: the new blocksize in bytes
|
* @blocksize: the new blocksize in bytes
|
||||||
*
|
*
|
||||||
* Set the number of bytes that @src will push out with each buffer.
|
* Set the number of bytes that @src will push out with each buffer. When
|
||||||
|
* @blocksize is set to -1, a default length will be used.
|
||||||
*
|
*
|
||||||
* Since: 0.10.22
|
* Since: 0.10.22
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue