gst/tcp/gstmultifdsink.c: Update mode property docs, it's deprecated now.
authorWim Taymans <wim.taymans@gmail.com>
Fri, 7 Mar 2008 16:10:51 +0000 (16:10 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Fri, 7 Mar 2008 16:10:51 +0000 (16:10 +0000)
Original commit message from CVS:
* gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
Update mode property docs, it's deprecated now.

ChangeLog
gst/tcp/gstmultifdsink.c

index 3cb69ac..d89c535 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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:
        (gst_rtsp_connection_create):
        * gst/tcp/gstmultifdsink.c: (gst_fdset_mode_get_type),
index e918866..0f4298f 100644 (file)
@@ -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",