gstreamer/subprojects/gst-plugins-good/ext/pulse/pulsedeviceprovider.c
Jimmy Ohn a6c8c6f866 pulsedeviceprovider: Add is_default_device_name function and missing lock
Add is_default_device_name function to simplify compare device type
name and fix the missing lock when accessing default_sink_name and
default_source_name.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6558>
2024-04-10 08:43:56 +00:00

812 lines
22 KiB
C

/* GStreamer
* Copyright (C) 2012 Olivier Crete <olivier.crete@collabora.com>
*
* pulsedeviceprovider.c: pulseaudio device probing and monitoring
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "pulsedeviceprovider.h"
#include <string.h>
#include <gst/gst.h>
#include "pulsesrc.h"
#include "pulsesink.h"
#include "pulseutil.h"
GST_DEBUG_CATEGORY_EXTERN (pulse_debug);
#define GST_CAT_DEFAULT pulse_debug
static GstDevice *gst_pulse_device_new (guint id,
const gchar * device_name, GstCaps * caps, const gchar * internal_name,
GstPulseDeviceType type, GstStructure * properties, gboolean is_default);
G_DEFINE_TYPE (GstPulseDeviceProvider, gst_pulse_device_provider,
GST_TYPE_DEVICE_PROVIDER);
static void gst_pulse_device_provider_finalize (GObject * object);
static void gst_pulse_device_provider_set_property (GObject * object,
guint prop_id, const GValue * value, GParamSpec * pspec);
static void gst_pulse_device_provider_get_property (GObject * object,
guint prop_id, GValue * value, GParamSpec * pspec);
static GList *gst_pulse_device_provider_probe (GstDeviceProvider * provider);
static gboolean gst_pulse_device_provider_start (GstDeviceProvider * provider);
static void gst_pulse_device_provider_stop (GstDeviceProvider * provider);
enum
{
PROP_0,
PROP_SERVER,
PROP_CLIENT_NAME,
PROP_LAST
};
typedef struct
{
GList *devices;
GstPulseDeviceProvider *self;
} ListDevicesData;
static void
gst_pulse_device_provider_class_init (GstPulseDeviceProviderClass * klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GstDeviceProviderClass *dm_class = GST_DEVICE_PROVIDER_CLASS (klass);
gchar *client_name;
gobject_class->set_property = gst_pulse_device_provider_set_property;
gobject_class->get_property = gst_pulse_device_provider_get_property;
gobject_class->finalize = gst_pulse_device_provider_finalize;
dm_class->probe = gst_pulse_device_provider_probe;
dm_class->start = gst_pulse_device_provider_start;
dm_class->stop = gst_pulse_device_provider_stop;
g_object_class_install_property (gobject_class,
PROP_SERVER,
g_param_spec_string ("server", "Server",
"The PulseAudio server to connect to", NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
client_name = gst_pulse_client_name ();
g_object_class_install_property (gobject_class,
PROP_CLIENT_NAME,
g_param_spec_string ("client-name", "Client Name",
"The PulseAudio client_name_to_use", client_name,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
GST_PARAM_MUTABLE_READY));
g_free (client_name);
gst_device_provider_class_set_static_metadata (dm_class,
"PulseAudio Device Provider", "Sink/Source/Audio",
"List and provider PulseAudio source and sink devices",
"Olivier Crete <olivier.crete@collabora.com>");
}
static void
gst_pulse_device_provider_init (GstPulseDeviceProvider * self)
{
self->client_name = gst_pulse_client_name ();
}
static void
gst_pulse_device_provider_finalize (GObject * object)
{
GstPulseDeviceProvider *self = GST_PULSE_DEVICE_PROVIDER (object);
g_free (self->client_name);
g_free (self->server);
g_free (self->default_sink_name);
g_free (self->default_source_name);
G_OBJECT_CLASS (gst_pulse_device_provider_parent_class)->finalize (object);
}
static void
gst_pulse_device_provider_set_property (GObject * object,
guint prop_id, const GValue * value, GParamSpec * pspec)
{
GstPulseDeviceProvider *self = GST_PULSE_DEVICE_PROVIDER (object);
switch (prop_id) {
case PROP_SERVER:
g_free (self->server);
self->server = g_value_dup_string (value);
break;
case PROP_CLIENT_NAME:
g_free (self->client_name);
if (!g_value_get_string (value)) {
GST_WARNING_OBJECT (self,
"Empty PulseAudio client name not allowed. "
"Resetting to default value");
self->client_name = gst_pulse_client_name ();
} else
self->client_name = g_value_dup_string (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gst_pulse_device_provider_get_property (GObject * object,
guint prop_id, GValue * value, GParamSpec * pspec)
{
GstPulseDeviceProvider *self = GST_PULSE_DEVICE_PROVIDER (object);
switch (prop_id) {
case PROP_SERVER:
g_value_set_string (value, self->server);
break;
case PROP_CLIENT_NAME:
g_value_set_string (value, self->client_name);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
context_state_cb (pa_context * c, void *userdata)
{
GstPulseDeviceProvider *self = userdata;
switch (pa_context_get_state (c)) {
case PA_CONTEXT_READY:
case PA_CONTEXT_TERMINATED:
case PA_CONTEXT_FAILED:
pa_threaded_mainloop_signal (self->mainloop, 0);
break;
case PA_CONTEXT_UNCONNECTED:
case PA_CONTEXT_CONNECTING:
case PA_CONTEXT_AUTHORIZING:
case PA_CONTEXT_SETTING_NAME:
break;
}
}
static gboolean
is_default_device_name (GstPulseDeviceProvider * self,
const char *name, GstPulseDeviceType type)
{
gboolean ret = FALSE;
GST_OBJECT_LOCK (self);
switch (type) {
case GST_PULSE_DEVICE_TYPE_SINK:
ret = !g_strcmp0 (name, self->default_sink_name);
break;
case GST_PULSE_DEVICE_TYPE_SOURCE:
ret = !g_strcmp0 (name, self->default_source_name);
break;
default:
GST_ERROR_OBJECT (self, "Unknown pulse device type!");
break;
}
GST_OBJECT_UNLOCK (self);
return ret;
}
static GstDevice *
new_source (GstPulseDeviceProvider * self, const pa_source_info * info)
{
GstCaps *caps;
GstStructure *props;
guint i;
gboolean is_default = FALSE;
caps = gst_caps_new_empty ();
for (i = 0; i < info->n_formats; i++)
gst_caps_append (caps, gst_pulse_format_info_to_caps (info->formats[i]));
props = gst_pulse_make_structure (info->proplist);
if (!g_strcmp0 (gst_structure_get_string (props, "device.api"), "alsa"))
gst_device_provider_hide_provider (GST_DEVICE_PROVIDER (self),
"alsadeviceprovider");
is_default = is_default_device_name (self, info->name,
GST_PULSE_DEVICE_TYPE_SOURCE);
return gst_pulse_device_new (info->index, info->description,
caps, info->name, GST_PULSE_DEVICE_TYPE_SOURCE, props, is_default);
}
static GstDevice *
new_sink (GstPulseDeviceProvider * self, const pa_sink_info * info)
{
GstCaps *caps;
GstStructure *props;
guint i;
gboolean is_default = FALSE;
caps = gst_caps_new_empty ();
for (i = 0; i < info->n_formats; i++)
gst_caps_append (caps, gst_pulse_format_info_to_caps (info->formats[i]));
props = gst_pulse_make_structure (info->proplist);
is_default = is_default_device_name (self, info->name,
GST_PULSE_DEVICE_TYPE_SINK);
return gst_pulse_device_new (info->index, info->description,
caps, info->name, GST_PULSE_DEVICE_TYPE_SINK, props, is_default);
}
static void
get_source_info_cb (pa_context * context,
const pa_source_info * info, int eol, void *userdata)
{
GstPulseDeviceProvider *self = userdata;
GstDevice *dev;
if (eol) {
pa_threaded_mainloop_signal (self->mainloop, 0);
return;
}
dev = new_source (self, info);
if (dev)
gst_device_provider_device_add (GST_DEVICE_PROVIDER (self), dev);
}
static void
get_server_info_cb (pa_context * context, const pa_server_info * info,
void *userdata)
{
GList *tmp, *devices = NULL;
GstPulseDeviceProvider *self = userdata;
GST_OBJECT_LOCK (self);
g_free (self->default_sink_name);
g_free (self->default_source_name);
self->default_sink_name = g_strdup (info->default_sink_name);
self->default_source_name = g_strdup (info->default_source_name);
GST_DEBUG_OBJECT (self, "Default sink name: %s", self->default_sink_name);
for (tmp = GST_DEVICE_PROVIDER (self)->devices; tmp; tmp = tmp->next)
devices = g_list_prepend (devices, gst_object_ref (tmp->data));
GST_OBJECT_UNLOCK (self);
for (tmp = devices; tmp; tmp = tmp->next) {
GstPulseDevice *dev = tmp->data;
GstStructure *props = gst_device_get_properties (GST_DEVICE (dev));
gboolean was_default = FALSE, is_default = FALSE;
g_assert (props);
gst_structure_get_boolean (props, "is-default", &was_default);
switch (dev->type) {
case GST_PULSE_DEVICE_TYPE_SINK:
is_default =
is_default_device_name (self, dev->internal_name,
GST_PULSE_DEVICE_TYPE_SINK);
break;
case GST_PULSE_DEVICE_TYPE_SOURCE:
is_default =
is_default_device_name (self, dev->internal_name,
GST_PULSE_DEVICE_TYPE_SOURCE);
break;
}
if (was_default != is_default) {
GstDevice *updated_device;
gchar *name = gst_device_get_display_name (GST_DEVICE (dev));
gst_structure_set (props, "is-default", G_TYPE_BOOLEAN, is_default, NULL);
updated_device = gst_pulse_device_new (dev->device_index,
name, gst_device_get_caps (GST_DEVICE (dev)), dev->internal_name,
dev->type, props, is_default);
gst_device_provider_device_changed (GST_DEVICE_PROVIDER (self),
updated_device, GST_DEVICE (dev));
g_free (name);
} else {
gst_structure_free (props);
}
}
g_list_free_full (devices, gst_object_unref);
pa_threaded_mainloop_signal (self->mainloop, 0);
}
static void
get_sink_info_cb (pa_context * context,
const pa_sink_info * info, int eol, void *userdata)
{
GstPulseDeviceProvider *self = userdata;
GstDevice *dev;
if (eol) {
pa_threaded_mainloop_signal (self->mainloop, 0);
return;
}
dev = new_sink (self, info);
if (dev)
gst_device_provider_device_add (GST_DEVICE_PROVIDER (self), dev);
}
static void
context_subscribe_cb (pa_context * context, pa_subscription_event_type_t type,
uint32_t idx, void *userdata)
{
GstPulseDeviceProvider *self = userdata;
GstDeviceProvider *provider = userdata;
pa_subscription_event_type_t facility =
type & PA_SUBSCRIPTION_EVENT_FACILITY_MASK;
pa_subscription_event_type_t event_type =
type & PA_SUBSCRIPTION_EVENT_TYPE_MASK;
if (facility == PA_SUBSCRIPTION_EVENT_SERVER ||
facility != PA_SUBSCRIPTION_EVENT_CHANGE) {
pa_context_get_server_info (self->context, get_server_info_cb, self);
}
if (facility != PA_SUBSCRIPTION_EVENT_SOURCE &&
facility != PA_SUBSCRIPTION_EVENT_SINK)
return;
if (event_type == PA_SUBSCRIPTION_EVENT_NEW) {
/* Microphone in the source output has changed */
if (facility == PA_SUBSCRIPTION_EVENT_SOURCE)
pa_context_get_source_info_by_index (context, idx, get_source_info_cb,
self);
else if (facility == PA_SUBSCRIPTION_EVENT_SINK)
pa_context_get_sink_info_by_index (context, idx, get_sink_info_cb, self);
} else if (event_type == PA_SUBSCRIPTION_EVENT_REMOVE) {
GstPulseDevice *dev = NULL;
GList *item;
GST_OBJECT_LOCK (self);
for (item = provider->devices; item; item = item->next) {
dev = item->data;
if (((facility == PA_SUBSCRIPTION_EVENT_SOURCE &&
dev->type == GST_PULSE_DEVICE_TYPE_SOURCE) ||
(facility == PA_SUBSCRIPTION_EVENT_SINK &&
dev->type == GST_PULSE_DEVICE_TYPE_SINK)) &&
dev->device_index == idx) {
gst_object_ref (dev);
break;
}
dev = NULL;
}
GST_OBJECT_UNLOCK (self);
if (dev) {
gst_device_provider_device_remove (GST_DEVICE_PROVIDER (self),
GST_DEVICE (dev));
gst_object_unref (dev);
}
}
}
static void
get_source_info_list_cb (pa_context * context, const pa_source_info * info,
int eol, void *userdata)
{
ListDevicesData *data = userdata;
if (eol)
return;
data->devices =
g_list_prepend (data->devices,
gst_object_ref_sink (new_source (data->self, info)));
}
static void
get_sink_info_list_cb (pa_context * context, const pa_sink_info * info,
int eol, void *userdata)
{
ListDevicesData *data = userdata;
if (eol)
return;
data->devices =
g_list_prepend (data->devices, gst_object_ref_sink (new_sink (data->self,
info)));
}
static GList *
gst_pulse_device_provider_probe (GstDeviceProvider * provider)
{
GstPulseDeviceProvider *self = GST_PULSE_DEVICE_PROVIDER (provider);
pa_mainloop *m = NULL;
pa_context *c = NULL;
pa_operation *o;
ListDevicesData data = { NULL, self };
if (!(m = pa_mainloop_new ()))
return NULL;
if (!(c = pa_context_new (pa_mainloop_get_api (m), self->client_name))) {
GST_ERROR_OBJECT (self, "Failed to create context");
goto failed;
}
if (pa_context_connect (c, self->server, 0, NULL) < 0) {
GST_ERROR_OBJECT (self, "Failed to connect: %s",
pa_strerror (pa_context_errno (self->context)));
goto failed;
}
for (;;) {
pa_context_state_t state;
state = pa_context_get_state (c);
if (!PA_CONTEXT_IS_GOOD (state)) {
GST_ERROR_OBJECT (self, "Failed to connect: %s",
pa_strerror (pa_context_errno (c)));
goto failed;
}
if (state == PA_CONTEXT_READY)
break;
/* Wait until the context is ready */
if (pa_mainloop_iterate (m, TRUE, NULL) < 0)
goto failed;
}
GST_DEBUG_OBJECT (self, "connected");
o = pa_context_get_sink_info_list (c, get_sink_info_list_cb, &data);
while (pa_operation_get_state (o) == PA_OPERATION_RUNNING &&
pa_operation_get_state (o) == PA_OPERATION_RUNNING) {
if (pa_mainloop_iterate (m, TRUE, NULL) < 0)
break;
}
pa_operation_unref (o);
o = pa_context_get_source_info_list (c, get_source_info_list_cb, &data);
while (pa_operation_get_state (o) == PA_OPERATION_RUNNING &&
pa_operation_get_state (o) == PA_OPERATION_RUNNING) {
if (pa_mainloop_iterate (m, TRUE, NULL) < 0)
break;
}
pa_operation_unref (o);
pa_context_disconnect (c);
pa_mainloop_free (m);
return data.devices;
failed:
return NULL;
}
static gboolean
run_pulse_operation (GstPulseDeviceProvider * self, pa_operation * operation)
{
if (!operation)
return FALSE;
while (pa_operation_get_state (operation) == PA_OPERATION_RUNNING) {
if (!PA_CONTEXT_IS_GOOD (pa_context_get_state ((self->context)))) {
pa_operation_cancel (operation);
pa_operation_unref (operation);
return FALSE;
}
pa_threaded_mainloop_wait (self->mainloop);
}
pa_operation_unref (operation);
return TRUE;
}
static gboolean
gst_pulse_device_provider_start (GstDeviceProvider * provider)
{
GstPulseDeviceProvider *self = GST_PULSE_DEVICE_PROVIDER (provider);
if (!(self->mainloop = pa_threaded_mainloop_new ())) {
GST_ERROR_OBJECT (self, "Could not create pulseaudio mainloop");
goto mainloop_failed;
}
if (pa_threaded_mainloop_start (self->mainloop) < 0) {
GST_ERROR_OBJECT (self, "Could not start pulseaudio mainloop");
pa_threaded_mainloop_free (self->mainloop);
self->mainloop = NULL;
goto mainloop_failed;
}
pa_threaded_mainloop_lock (self->mainloop);
if (!(self->context =
pa_context_new (pa_threaded_mainloop_get_api (self->mainloop),
self->client_name))) {
GST_ERROR_OBJECT (self, "Failed to create context");
goto unlock_and_fail;
}
pa_context_set_state_callback (self->context, context_state_cb, self);
pa_context_set_subscribe_callback (self->context, context_subscribe_cb, self);
GST_DEBUG_OBJECT (self, "connect to server %s", GST_STR_NULL (self->server));
if (pa_context_connect (self->context, self->server, 0, NULL) < 0) {
GST_ERROR_OBJECT (self, "Failed to connect: %s",
pa_strerror (pa_context_errno (self->context)));
goto unlock_and_fail;
}
for (;;) {
pa_context_state_t state;
state = pa_context_get_state (self->context);
if (!PA_CONTEXT_IS_GOOD (state)) {
GST_ERROR_OBJECT (self, "Failed to connect: %s",
pa_strerror (pa_context_errno (self->context)));
goto unlock_and_fail;
}
if (state == PA_CONTEXT_READY)
break;
/* Wait until the context is ready */
pa_threaded_mainloop_wait (self->mainloop);
}
GST_DEBUG_OBJECT (self, "connected");
pa_context_subscribe (self->context,
PA_SUBSCRIPTION_MASK_SOURCE | PA_SUBSCRIPTION_MASK_SINK |
PA_SUBSCRIPTION_EVENT_SERVER | PA_SUBSCRIPTION_EVENT_CHANGE, NULL, NULL);
if (!run_pulse_operation (self, pa_context_get_server_info (self->context,
get_server_info_cb, self)))
goto unlock_and_fail;
if (!run_pulse_operation (self,
pa_context_get_source_info_list (self->context, get_source_info_cb,
self)))
goto unlock_and_fail;
if (!run_pulse_operation (self, pa_context_get_sink_info_list (self->context,
get_sink_info_cb, self)))
goto unlock_and_fail;
pa_threaded_mainloop_unlock (self->mainloop);
return TRUE;
unlock_and_fail:
pa_threaded_mainloop_unlock (self->mainloop);
gst_pulse_device_provider_stop (provider);
return FALSE;
mainloop_failed:
return FALSE;
}
static void
gst_pulse_device_provider_stop (GstDeviceProvider * provider)
{
GstPulseDeviceProvider *self = GST_PULSE_DEVICE_PROVIDER (provider);
pa_threaded_mainloop_stop (self->mainloop);
if (self->context) {
pa_context_disconnect (self->context);
/* Make sure we don't get any further callbacks */
pa_context_set_state_callback (self->context, NULL, NULL);
pa_context_set_subscribe_callback (self->context, NULL, NULL);
pa_context_unref (self->context);
self->context = NULL;
}
pa_threaded_mainloop_free (self->mainloop);
self->mainloop = NULL;
}
enum
{
PROP_INTERNAL_NAME = 1,
};
G_DEFINE_TYPE (GstPulseDevice, gst_pulse_device, GST_TYPE_DEVICE);
static void gst_pulse_device_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static void gst_pulse_device_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec);
static void gst_pulse_device_finalize (GObject * object);
static GstElement *gst_pulse_device_create_element (GstDevice * device,
const gchar * name);
static gboolean gst_pulse_device_reconfigure_element (GstDevice * device,
GstElement * element);
static void
gst_pulse_device_class_init (GstPulseDeviceClass * klass)
{
GstDeviceClass *dev_class = GST_DEVICE_CLASS (klass);
GObjectClass *object_class = G_OBJECT_CLASS (klass);
dev_class->create_element = gst_pulse_device_create_element;
dev_class->reconfigure_element = gst_pulse_device_reconfigure_element;
object_class->get_property = gst_pulse_device_get_property;
object_class->set_property = gst_pulse_device_set_property;
object_class->finalize = gst_pulse_device_finalize;
g_object_class_install_property (object_class, PROP_INTERNAL_NAME,
g_param_spec_string ("internal-name", "Internal PulseAudio device name",
"The internal name of the PulseAudio device", "",
G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
}
static void
gst_pulse_device_init (GstPulseDevice * device)
{
}
static void
gst_pulse_device_finalize (GObject * object)
{
GstPulseDevice *device = GST_PULSE_DEVICE (object);
g_free (device->internal_name);
G_OBJECT_CLASS (gst_pulse_device_parent_class)->finalize (object);
}
static GstElement *
gst_pulse_device_create_element (GstDevice * device, const gchar * name)
{
GstPulseDevice *pulse_dev = GST_PULSE_DEVICE (device);
GstElement *elem;
elem = gst_element_factory_make (pulse_dev->element, name);
g_object_set (elem, "device", pulse_dev->internal_name, NULL);
return elem;
}
static gboolean
gst_pulse_device_reconfigure_element (GstDevice * device, GstElement * element)
{
GstPulseDevice *pulse_dev = GST_PULSE_DEVICE (device);
if (!strcmp (pulse_dev->element, "pulsesrc")) {
if (!GST_IS_PULSESRC (element))
return FALSE;
} else if (!strcmp (pulse_dev->element, "pulsesink")) {
if (!GST_IS_PULSESINK (element))
return FALSE;
} else {
g_assert_not_reached ();
}
g_object_set (element, "device", pulse_dev->internal_name, NULL);
return TRUE;
}
/* Takes ownership of @caps and @props */
static GstDevice *
gst_pulse_device_new (guint device_index, const gchar * device_name,
GstCaps * caps, const gchar * internal_name, GstPulseDeviceType type,
GstStructure * props, gboolean is_default)
{
GstPulseDevice *gstdev;
const gchar *element = NULL;
const gchar *klass = NULL;
g_return_val_if_fail (device_name, NULL);
g_return_val_if_fail (internal_name, NULL);
g_return_val_if_fail (caps, NULL);
switch (type) {
case GST_PULSE_DEVICE_TYPE_SOURCE:
element = "pulsesrc";
klass = "Audio/Source";
break;
case GST_PULSE_DEVICE_TYPE_SINK:
element = "pulsesink";
klass = "Audio/Sink";
break;
default:
g_assert_not_reached ();
break;
}
gst_structure_set (props, "is-default", G_TYPE_BOOLEAN, is_default, NULL);
gstdev = g_object_new (GST_TYPE_PULSE_DEVICE,
"display-name", device_name, "caps", caps, "device-class", klass,
"internal-name", internal_name, "properties", props, NULL);
gstdev->type = type;
gstdev->device_index = device_index;
gstdev->element = element;
gstdev->is_default = is_default;
gst_structure_free (props);
gst_caps_unref (caps);
return GST_DEVICE (gstdev);
}
static void
gst_pulse_device_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec)
{
GstPulseDevice *device;
device = GST_PULSE_DEVICE_CAST (object);
switch (prop_id) {
case PROP_INTERNAL_NAME:
g_value_set_string (value, device->internal_name);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gst_pulse_device_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
GstPulseDevice *device;
device = GST_PULSE_DEVICE_CAST (object);
switch (prop_id) {
case PROP_INTERNAL_NAME:
device->internal_name = g_value_dup_string (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}