From 6c50e0031a0417c53e02588ce888079a5e96f4cd Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 7 Mar 2008 16:10:51 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ gst/tcp/gstmultifdsink.c | 13 +++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3cb69ac8d3..d89c53509b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-07 Wim Taymans + + * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init): + Update mode property docs, it's deprecated now. + 2008-03-07 Wim Taymans * gst-libs/gst/rtsp/gstrtspconnection.c: diff --git a/gst/tcp/gstmultifdsink.c b/gst/tcp/gstmultifdsink.c index e91886626e..0f4298fbe0 100644 --- a/gst/tcp/gstmultifdsink.c +++ b/gst/tcp/gstmultifdsink.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",