mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
plugins/elements/gstfdsrc.c: Added Since doc.
Original commit message from CVS: * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init): Added Since doc.
This commit is contained in:
parent
c8c34e8dff
commit
98440eb49d
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-06-20 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
|
||||
Added Since doc.
|
||||
|
||||
2008-06-20 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
Patch by: joel larsson <tilljoel at gmail dot com>
|
||||
|
|
|
@ -174,6 +174,13 @@ gst_fd_src_class_init (GstFdSrcClass * klass)
|
|||
g_object_class_install_property (gobject_class, PROP_FD,
|
||||
g_param_spec_int ("fd", "fd", "An open file descriptor to read from",
|
||||
0, G_MAXINT, DEFAULT_FD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
/**
|
||||
* GstFdSrc:timeout
|
||||
*
|
||||
* Post a message after timeout microseconds
|
||||
*
|
||||
* Since: 0.10.21
|
||||
*/
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_TIMEOUT,
|
||||
g_param_spec_uint64 ("timeout", "Timeout",
|
||||
"Post a message after timeout microseconds (0 = disabled)", 0,
|
||||
|
|
Loading…
Reference in a new issue