asio: Add "Since" markers and fix typos in property description

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8220>
This commit is contained in:
Seungha Yang 2024-12-28 20:42:56 +09:00 committed by GStreamer Marge Bot
parent 9ed220bafb
commit 256005be13
3 changed files with 28 additions and 4 deletions

View file

@ -17,6 +17,14 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
/**
* SECTION:element-asiosink
* @title: asiosink
* @short_description: ASIO sink
*
* Since: 1.20
*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include <config.h> #include <config.h>
#endif #endif
@ -104,9 +112,9 @@ gst_asio_sink_class_init (GstAsioSinkClass * klass)
G_PARAM_STATIC_STRINGS))); G_PARAM_STATIC_STRINGS)));
g_object_class_install_property (gobject_class, PROP_OCCUPY_ALL_CHANNELS, g_object_class_install_property (gobject_class, PROP_OCCUPY_ALL_CHANNELS,
g_param_spec_boolean ("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 " "When enabled, ASIO device will allocate resources for all in/output "
"channles", "channels",
DEFAULT_OCCUPY_ALL_CHANNELS, DEFAULT_OCCUPY_ALL_CHANNELS,
(GParamFlags) (GST_PARAM_MUTABLE_READY | G_PARAM_READWRITE | (GParamFlags) (GST_PARAM_MUTABLE_READY | G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS))); G_PARAM_STATIC_STRINGS)));

View file

@ -17,6 +17,14 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
/**
* SECTION:element-asiosrc
* @title: asiosrc
* @short_description: ASIO source
*
* Since: 1.20
*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include <config.h> #include <config.h>
#endif #endif
@ -106,9 +114,9 @@ gst_asio_src_class_init (GstAsioSrcClass * klass)
G_PARAM_STATIC_STRINGS))); G_PARAM_STATIC_STRINGS)));
g_object_class_install_property (gobject_class, PROP_OCCUPY_ALL_CHANNELS, g_object_class_install_property (gobject_class, PROP_OCCUPY_ALL_CHANNELS,
g_param_spec_boolean ("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 " "When enabled, ASIO device will allocate resources for all in/output "
"channles", "channels",
DEFAULT_OCCUPY_ALL_CHANNELS, DEFAULT_OCCUPY_ALL_CHANNELS,
(GParamFlags) (GST_PARAM_MUTABLE_READY | G_PARAM_READWRITE | (GParamFlags) (GST_PARAM_MUTABLE_READY | G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS))); G_PARAM_STATIC_STRINGS)));

View file

@ -17,6 +17,14 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
/**
* plugin-asio:
*
* Steinberg ASIO plugin
*
* Since: 1.20
*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"
#endif #endif