mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
deviceprovider: add device provider
Add device provider Clean up states Make generic object id instead of exposing GDBusProxy Add more introspection API
This commit is contained in:
parent
cbeee04809
commit
7159ea8408
14 changed files with 811 additions and 41 deletions
613
src/gst/gstpinosdeviceprovider.c
Normal file
613
src/gst/gstpinosdeviceprovider.c
Normal file
|
|
@ -0,0 +1,613 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2012 Olivier Crete <olivier.crete@collabora.com>
|
||||
* (C) 2015 Wim Taymans <wim.taymans@gmail.com>
|
||||
*
|
||||
* pinosdeviceprovider.c: pinos 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 <string.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
|
||||
#include "gstpinosdeviceprovider.h"
|
||||
#include "gstpinossrc.h"
|
||||
#include "gstpinossink.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (pinos_debug);
|
||||
#define GST_CAT_DEFAULT pinos_debug
|
||||
|
||||
|
||||
static GstDevice *gst_pinos_device_new (const gchar * device_name,
|
||||
GstCaps * caps, const gchar * internal_name, GstPinosDeviceType type);
|
||||
|
||||
G_DEFINE_TYPE (GstPinosDeviceProvider, gst_pinos_device_provider,
|
||||
GST_TYPE_DEVICE_PROVIDER);
|
||||
|
||||
static void gst_pinos_device_provider_finalize (GObject * object);
|
||||
static void gst_pinos_device_provider_set_property (GObject * object,
|
||||
guint prop_id, const GValue * value, GParamSpec * pspec);
|
||||
static void gst_pinos_device_provider_get_property (GObject * object,
|
||||
guint prop_id, GValue * value, GParamSpec * pspec);
|
||||
|
||||
|
||||
static GList *gst_pinos_device_provider_probe (GstDeviceProvider * provider);
|
||||
static gboolean gst_pinos_device_provider_start (GstDeviceProvider * provider);
|
||||
static void gst_pinos_device_provider_stop (GstDeviceProvider * provider);
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_0,
|
||||
PROP_CLIENT_NAME,
|
||||
PROP_LAST
|
||||
};
|
||||
|
||||
static gchar *
|
||||
pinos_client_name (void)
|
||||
{
|
||||
const char *c;
|
||||
|
||||
if ((c = g_get_application_name ()))
|
||||
return g_strdup (c);
|
||||
else
|
||||
return g_strdup_printf ("GStreamer-pid-%lu", (gulong) getpid ());
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
gst_pinos_device_provider_class_init (GstPinosDeviceProviderClass * klass)
|
||||
{
|
||||
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
||||
GstDeviceProviderClass *dm_class = GST_DEVICE_PROVIDER_CLASS (klass);
|
||||
gchar *client_name;
|
||||
|
||||
gobject_class->set_property = gst_pinos_device_provider_set_property;
|
||||
gobject_class->get_property = gst_pinos_device_provider_get_property;
|
||||
gobject_class->finalize = gst_pinos_device_provider_finalize;
|
||||
|
||||
dm_class->probe = gst_pinos_device_provider_probe;
|
||||
dm_class->start = gst_pinos_device_provider_start;
|
||||
dm_class->stop = gst_pinos_device_provider_stop;
|
||||
|
||||
client_name = pinos_client_name ();
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_CLIENT_NAME,
|
||||
g_param_spec_string ("client-name", "Client Name",
|
||||
"The Pinos 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,
|
||||
"Pinos Device Provider", "Sink/Source/Audio/Video",
|
||||
"List and provide Pinos source and sink devices",
|
||||
"Wim Taymans <wim.taymans@gmail.com>");
|
||||
}
|
||||
|
||||
static void
|
||||
gst_pinos_device_provider_init (GstPinosDeviceProvider * self)
|
||||
{
|
||||
self->client_name = pinos_client_name ();
|
||||
}
|
||||
|
||||
static void
|
||||
gst_pinos_device_provider_finalize (GObject * object)
|
||||
{
|
||||
GstPinosDeviceProvider *self = GST_PINOS_DEVICE_PROVIDER (object);
|
||||
|
||||
g_free (self->client_name);
|
||||
|
||||
G_OBJECT_CLASS (gst_pinos_device_provider_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
gst_pinos_device_provider_set_property (GObject * object,
|
||||
guint prop_id, const GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
GstPinosDeviceProvider *self = GST_PINOS_DEVICE_PROVIDER (object);
|
||||
|
||||
switch (prop_id) {
|
||||
case PROP_CLIENT_NAME:
|
||||
g_free (self->client_name);
|
||||
if (!g_value_get_string (value)) {
|
||||
GST_WARNING_OBJECT (self,
|
||||
"Empty Pinos client name not allowed. "
|
||||
"Resetting to default value");
|
||||
self->client_name = pinos_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_pinos_device_provider_get_property (GObject * object,
|
||||
guint prop_id, GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
GstPinosDeviceProvider *self = GST_PINOS_DEVICE_PROVIDER (object);
|
||||
|
||||
switch (prop_id) {
|
||||
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 GstDevice *
|
||||
new_source (const PinosSourceInfo *info)
|
||||
{
|
||||
GstCaps *caps;
|
||||
|
||||
caps = gst_caps_from_string (g_bytes_get_data (info->formats, NULL));
|
||||
|
||||
return gst_pinos_device_new (info->name,
|
||||
caps, info->name, GST_PINOS_DEVICE_TYPE_SOURCE);
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
gboolean end;
|
||||
GList **devices;
|
||||
} InfoData;
|
||||
|
||||
static gboolean
|
||||
list_source_info_cb (PinosContext *c,
|
||||
const PinosSourceInfo *info,
|
||||
gpointer user_data)
|
||||
{
|
||||
InfoData *data = user_data;
|
||||
|
||||
if (info == NULL) {
|
||||
data->end = TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
*data->devices = g_list_prepend (*data->devices, gst_object_ref_sink (new_source (info)));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
get_source_info_cb (PinosContext *context,
|
||||
const PinosSourceInfo *info,
|
||||
gpointer user_data)
|
||||
{
|
||||
GstPinosDeviceProvider *self = user_data;
|
||||
GstDevice *dev;
|
||||
|
||||
if (info == NULL) {
|
||||
pinos_main_loop_signal (self->loop, FALSE);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
dev = new_source (info);
|
||||
|
||||
if (dev)
|
||||
gst_device_provider_device_add (GST_DEVICE_PROVIDER (self), dev);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
context_subscribe_cb (PinosContext *context,
|
||||
PinosSubscriptionEvent type,
|
||||
PinosSubscriptionFlags flags,
|
||||
gpointer id,
|
||||
gpointer user_data)
|
||||
{
|
||||
GstPinosDeviceProvider *self = user_data;
|
||||
GstDeviceProvider *provider = user_data;
|
||||
|
||||
if (flags != PINOS_SUBSCRIPTION_FLAGS_SOURCE)
|
||||
return;
|
||||
|
||||
if (type == PINOS_SUBSCRIPTION_EVENT_NEW) {
|
||||
if (flags == PINOS_SUBSCRIPTION_FLAGS_SOURCE)
|
||||
pinos_context_get_source_info_by_id (context,
|
||||
id,
|
||||
PINOS_SOURCE_INFO_FLAGS_FORMATS,
|
||||
get_source_info_cb,
|
||||
NULL,
|
||||
self);
|
||||
} else if (type == PINOS_SUBSCRIPTION_EVENT_REMOVE) {
|
||||
GstPinosDevice *dev = NULL;
|
||||
GList *item;
|
||||
|
||||
GST_OBJECT_LOCK (self);
|
||||
for (item = provider->devices; item; item = item->next) {
|
||||
dev = item->data;
|
||||
|
||||
if (((flags == PINOS_SUBSCRIPTION_FLAGS_SOURCE &&
|
||||
dev->type == GST_PINOS_DEVICE_TYPE_SOURCE)) &&
|
||||
dev->id == id) {
|
||||
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 GList *
|
||||
gst_pinos_device_provider_probe (GstDeviceProvider * provider)
|
||||
{
|
||||
GstPinosDeviceProvider *self = GST_PINOS_DEVICE_PROVIDER (provider);
|
||||
GMainContext *m = NULL;
|
||||
PinosContext *c = NULL;
|
||||
InfoData data;
|
||||
|
||||
if (!(m = g_main_context_new ()))
|
||||
return NULL;
|
||||
|
||||
if (!(c = pinos_context_new (m, self->client_name, NULL)))
|
||||
goto failed;
|
||||
|
||||
g_main_context_push_thread_default (m);
|
||||
|
||||
pinos_context_connect (c, PINOS_CONTEXT_FLAGS_NONE);
|
||||
|
||||
for (;;) {
|
||||
PinosContextState state;
|
||||
|
||||
state = pinos_context_get_state (c);
|
||||
|
||||
if (state <= 0) {
|
||||
GST_ERROR_OBJECT (self, "Failed to connect: %s",
|
||||
pinos_context_get_error (c)->message);
|
||||
goto failed;
|
||||
}
|
||||
|
||||
if (state == PINOS_CONTEXT_STATE_READY)
|
||||
break;
|
||||
|
||||
/* Wait until something happens */
|
||||
g_main_context_iteration (m, TRUE);
|
||||
}
|
||||
GST_DEBUG_OBJECT (self, "connected");
|
||||
|
||||
data.end = FALSE;
|
||||
data.devices = NULL;
|
||||
pinos_context_list_source_info (c,
|
||||
PINOS_SOURCE_INFO_FLAGS_FORMATS,
|
||||
list_source_info_cb,
|
||||
NULL,
|
||||
&data);
|
||||
for (;;) {
|
||||
if (pinos_context_get_state (c) <= 0)
|
||||
break;
|
||||
if (data.end)
|
||||
break;
|
||||
g_main_context_iteration (m, TRUE);
|
||||
}
|
||||
|
||||
pinos_context_disconnect (c);
|
||||
g_clear_object (&c);
|
||||
|
||||
g_main_context_pop_thread_default (m);
|
||||
g_clear_object (&m);
|
||||
|
||||
return *data.devices;
|
||||
|
||||
failed:
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
context_state_notify (GObject *gobject,
|
||||
GParamSpec *pspec,
|
||||
gpointer user_data)
|
||||
{
|
||||
GstPinosDeviceProvider *self = user_data;
|
||||
PinosContext *context = PINOS_CONTEXT (gobject);
|
||||
PinosContextState state;
|
||||
|
||||
state= pinos_context_get_state (context);
|
||||
|
||||
GST_DEBUG ("got context state %d", state);
|
||||
|
||||
switch (state) {
|
||||
case PINOS_CONTEXT_STATE_CONNECTING:
|
||||
case PINOS_CONTEXT_STATE_REGISTERING:
|
||||
break;
|
||||
case PINOS_CONTEXT_STATE_UNCONNECTED:
|
||||
case PINOS_CONTEXT_STATE_READY:
|
||||
case PINOS_CONTEXT_STATE_ERROR:
|
||||
GST_ERROR_OBJECT (self, "context error: %s",
|
||||
pinos_context_get_error (context)->message);
|
||||
break;
|
||||
}
|
||||
pinos_main_loop_signal (self->loop, FALSE);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gst_pinos_device_provider_start (GstDeviceProvider * provider)
|
||||
{
|
||||
GstPinosDeviceProvider *self = GST_PINOS_DEVICE_PROVIDER (provider);
|
||||
GError *error = NULL;
|
||||
GMainContext *c;
|
||||
|
||||
c = g_main_context_new ();
|
||||
|
||||
if (!(self->loop = pinos_main_loop_new (c, "pinos-device-monitor"))) {
|
||||
GST_ERROR_OBJECT (self, "Could not create pinos mainloop");
|
||||
goto mainloop_failed;
|
||||
}
|
||||
if (!pinos_main_loop_start (self->loop, &error)) {
|
||||
GST_ERROR_OBJECT (self, "Could not start pinos mainloop: %s", error->message);
|
||||
g_clear_object (&self->loop);
|
||||
goto mainloop_failed;
|
||||
}
|
||||
|
||||
pinos_main_loop_lock (self->loop);
|
||||
|
||||
if (!(self->context = pinos_context_new (c, self->client_name, NULL))) {
|
||||
GST_ERROR_OBJECT (self, "Failed to create context");
|
||||
goto unlock_and_fail;
|
||||
}
|
||||
|
||||
g_signal_connect (self->context,
|
||||
"notify::state",
|
||||
(GCallback) context_state_notify,
|
||||
self);
|
||||
|
||||
g_object_set (self->context,
|
||||
"subscription-mask", PINOS_SUBSCRIPTION_FLAGS_ALL,
|
||||
NULL);
|
||||
g_signal_connect (self->context,
|
||||
"subscription-event",
|
||||
(GCallback) context_subscribe_cb,
|
||||
self);
|
||||
|
||||
pinos_context_connect (self->context, PINOS_CONTEXT_FLAGS_NONE);
|
||||
|
||||
for (;;) {
|
||||
PinosContextState state;
|
||||
|
||||
state = pinos_context_get_state (self->context);
|
||||
|
||||
if (state <= 0) {
|
||||
GST_ERROR_OBJECT (self, "Failed to connect: %s",
|
||||
pinos_context_get_error (self->context)->message);
|
||||
goto unlock_and_fail;
|
||||
}
|
||||
|
||||
if (state == PINOS_CONTEXT_STATE_READY)
|
||||
break;
|
||||
|
||||
/* Wait until the context is ready */
|
||||
pinos_main_loop_wait (self->loop);
|
||||
}
|
||||
GST_DEBUG_OBJECT (self, "connected");
|
||||
|
||||
pinos_context_list_source_info (self->context,
|
||||
PINOS_SOURCE_INFO_FLAGS_FORMATS,
|
||||
get_source_info_cb,
|
||||
NULL,
|
||||
self);
|
||||
|
||||
for (;;) {
|
||||
if (pinos_context_get_state (self->context) <= 0)
|
||||
goto unlock_and_fail;
|
||||
|
||||
pinos_main_loop_wait (self->loop);
|
||||
}
|
||||
pinos_main_loop_unlock (self->loop);
|
||||
|
||||
return TRUE;
|
||||
|
||||
mainloop_failed:
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
unlock_and_fail:
|
||||
{
|
||||
pinos_main_loop_unlock (self->loop);
|
||||
gst_pinos_device_provider_stop (provider);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gst_pinos_device_provider_stop (GstDeviceProvider * provider)
|
||||
{
|
||||
GstPinosDeviceProvider *self = GST_PINOS_DEVICE_PROVIDER (provider);
|
||||
|
||||
if (self->context) {
|
||||
pinos_context_disconnect (self->context);
|
||||
}
|
||||
pinos_main_loop_stop (self->loop);
|
||||
|
||||
g_clear_object (&self->context);
|
||||
g_clear_object (&self->loop);
|
||||
}
|
||||
|
||||
enum
|
||||
{
|
||||
PROP_INTERNAL_NAME = 1,
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE (GstPinosDevice, gst_pinos_device, GST_TYPE_DEVICE);
|
||||
|
||||
static void gst_pinos_device_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec);
|
||||
static void gst_pinos_device_set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec);
|
||||
static void gst_pinos_device_finalize (GObject * object);
|
||||
static GstElement *gst_pinos_device_create_element (GstDevice * device,
|
||||
const gchar * name);
|
||||
static gboolean gst_pinos_device_reconfigure_element (GstDevice * device,
|
||||
GstElement * element);
|
||||
|
||||
static void
|
||||
gst_pinos_device_class_init (GstPinosDeviceClass * klass)
|
||||
{
|
||||
GstDeviceClass *dev_class = GST_DEVICE_CLASS (klass);
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
|
||||
dev_class->create_element = gst_pinos_device_create_element;
|
||||
dev_class->reconfigure_element = gst_pinos_device_reconfigure_element;
|
||||
|
||||
object_class->get_property = gst_pinos_device_get_property;
|
||||
object_class->set_property = gst_pinos_device_set_property;
|
||||
object_class->finalize = gst_pinos_device_finalize;
|
||||
|
||||
g_object_class_install_property (object_class, PROP_INTERNAL_NAME,
|
||||
g_param_spec_string ("internal-name", "Internal Pinos device name",
|
||||
"The internal name of the Pinos device", "",
|
||||
G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
|
||||
}
|
||||
|
||||
static void
|
||||
gst_pinos_device_init (GstPinosDevice * device)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
gst_pinos_device_finalize (GObject * object)
|
||||
{
|
||||
GstPinosDevice *device = GST_PINOS_DEVICE (object);
|
||||
|
||||
g_free (device->internal_name);
|
||||
|
||||
G_OBJECT_CLASS (gst_pinos_device_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static GstElement *
|
||||
gst_pinos_device_create_element (GstDevice * device, const gchar * name)
|
||||
{
|
||||
GstPinosDevice *pinos_dev = GST_PINOS_DEVICE (device);
|
||||
GstElement *elem;
|
||||
|
||||
elem = gst_element_factory_make (pinos_dev->element, name);
|
||||
g_object_set (elem, "source", pinos_dev->internal_name, NULL);
|
||||
|
||||
return elem;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gst_pinos_device_reconfigure_element (GstDevice * device, GstElement * element)
|
||||
{
|
||||
GstPinosDevice *pinos_dev = GST_PINOS_DEVICE (device);
|
||||
|
||||
if (!strcmp (pinos_dev->element, "pinossrc")) {
|
||||
if (!GST_IS_PINOS_SRC (element))
|
||||
return FALSE;
|
||||
} else if (!strcmp (pinos_dev->element, "pinossink")) {
|
||||
if (!GST_IS_PINOS_SINK (element))
|
||||
return FALSE;
|
||||
} else {
|
||||
g_assert_not_reached ();
|
||||
}
|
||||
|
||||
g_object_set (element, "source", pinos_dev->internal_name, NULL);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static GstDevice *
|
||||
gst_pinos_device_new (const gchar * device_name,
|
||||
GstCaps * caps, const gchar * internal_name, GstPinosDeviceType type)
|
||||
{
|
||||
GstPinosDevice *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_PINOS_DEVICE_TYPE_SOURCE:
|
||||
element = "pinossrc";
|
||||
klass = "Audio/Source";
|
||||
break;
|
||||
case GST_PINOS_DEVICE_TYPE_SINK:
|
||||
element = "pinossink";
|
||||
klass = "Audio/Sink";
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
gstdev = g_object_new (GST_TYPE_PINOS_DEVICE,
|
||||
"display-name", device_name, "caps", caps, "device-class", klass,
|
||||
"internal-name", internal_name, NULL);
|
||||
|
||||
gstdev->type = type;
|
||||
gstdev->element = element;
|
||||
|
||||
return GST_DEVICE (gstdev);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
gst_pinos_device_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
GstPinosDevice *device;
|
||||
|
||||
device = GST_PINOS_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_pinos_device_set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
GstPinosDevice *device;
|
||||
|
||||
device = GST_PINOS_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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue