mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
gst/tcp/gstmultifdsink.c: Update mode property docs, it's deprecated now.
Original commit message from CVS: * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init): Update mode property docs, it's deprecated now.
This commit is contained in:
parent
8a822e70be
commit
6c50e0031a
2 changed files with 16 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-03-07 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
|
||||
Update mode property docs, it's deprecated now.
|
||||
|
||||
2008-03-07 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst-libs/gst/rtsp/gstrtspconnection.c:
|
||||
|
|
|
@ -380,10 +380,19 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
|
|||
g_object_class_install_property (gobject_class, PROP_PROTOCOL,
|
||||
g_param_spec_enum ("protocol", "Protocol", "The protocol to wrap data in",
|
||||
GST_TYPE_TCP_PROTOCOL, DEFAULT_PROTOCOL, G_PARAM_READWRITE));
|
||||
|
||||
/**
|
||||
* GstMultiFdSink::mode
|
||||
*
|
||||
* The mode for selecting activity on the fds.
|
||||
*
|
||||
* This property is deprecated since 0.10.18, if will now automatically
|
||||
* select and use the most optimal method.
|
||||
*/
|
||||
g_object_class_install_property (gobject_class, PROP_MODE,
|
||||
g_param_spec_enum ("mode", "Mode",
|
||||
"The mode for selecting activity on the fds", GST_TYPE_FDSET_MODE,
|
||||
DEFAULT_MODE, G_PARAM_READWRITE));
|
||||
"The mode for selecting activity on the fds (deprecated)",
|
||||
GST_TYPE_FDSET_MODE, DEFAULT_MODE, G_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (gobject_class, PROP_BUFFERS_MAX,
|
||||
g_param_spec_int ("buffers-max", "Buffers max",
|
||||
|
|
Loading…
Reference in a new issue