asio: Add "Since" markers and fix typos in property description
authorSeungha Yang <seungha@centricular.com>
Sat, 28 Dec 2024 11:42:56 +0000 (20:42 +0900)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Sun, 29 Dec 2024 14:24:55 +0000 (14:24 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8220>

subprojects/gst-plugins-bad/sys/asio/gstasiosink.cpp
subprojects/gst-plugins-bad/sys/asio/gstasiosrc.cpp
subprojects/gst-plugins-bad/sys/asio/plugin.c

index 63bc9a17fa8a1ece21832a81a10c6c57b22793b3..3364ad65021e359e8a6a09391395b73fd206fc44 100644 (file)
  * Boston, MA 02110-1301, USA.
  */
 
+/**
+ * SECTION:element-asiosink
+ * @title: asiosink
+ * @short_description: ASIO sink
+ *
+ * Since: 1.20
+ */
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
@@ -104,9 +112,9 @@ gst_asio_sink_class_init (GstAsioSinkClass * klass)
               G_PARAM_STATIC_STRINGS)));
   g_object_class_install_property (gobject_class, PROP_OCCUPY_ALL_CHANNELS,
       g_param_spec_boolean ("occupy-all-channels",
-          "Occupy All Channles",
+          "Occupy All Channels",
           "When enabled, ASIO device will allocate resources for all in/output "
-          "channles",
+          "channels",
           DEFAULT_OCCUPY_ALL_CHANNELS,
           (GParamFlags) (GST_PARAM_MUTABLE_READY | G_PARAM_READWRITE |
               G_PARAM_STATIC_STRINGS)));
index 892d9b4a87638e7d5191df6cb82f94babcc258e9..1db7e85919611fea3e11a52bf136cbe1ef6d1b61 100644 (file)
  * Boston, MA 02110-1301, USA.
  */
 
+/**
+ * SECTION:element-asiosrc
+ * @title: asiosrc
+ * @short_description: ASIO source
+ *
+ * Since: 1.20
+ */
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
@@ -106,9 +114,9 @@ gst_asio_src_class_init (GstAsioSrcClass * klass)
               G_PARAM_STATIC_STRINGS)));
   g_object_class_install_property (gobject_class, PROP_OCCUPY_ALL_CHANNELS,
       g_param_spec_boolean ("occupy-all-channels",
-          "Occupy All Channles",
+          "Occupy All Channels",
           "When enabled, ASIO device will allocate resources for all in/output "
-          "channles",
+          "channels",
           DEFAULT_OCCUPY_ALL_CHANNELS,
           (GParamFlags) (GST_PARAM_MUTABLE_READY | G_PARAM_READWRITE |
               G_PARAM_STATIC_STRINGS)));
index 55811372c2f551454889002934f50d205e31ca21..ae4a5a21ea5bb40694285f2f083f01cd30eeb30e 100644 (file)
  * Boston, MA 02110-1301, USA.
  */
 
+/**
+ * plugin-asio:
+ *
+ * Steinberg ASIO plugin
+ *
+ * Since: 1.20
+ */
+
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif