diff options
author | Michal Ratajsky <[email protected]> | 2014-08-12 04:56:55 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-08-12 04:56:55 +0200 |
commit | 6c6d4239ddc807e922df3874654f99eea291aadb (patch) | |
tree | 558f48fc965476344a946d93088680db3b5bac41 /libmatemixer/matemixer-device-profile.h | |
parent | 8436ec1641eee8868128755f6d1475230cea25e6 (diff) | |
download | libmatemixer-6c6d4239ddc807e922df3874654f99eea291aadb.tar.bz2 libmatemixer-6c6d4239ddc807e922df3874654f99eea291aadb.tar.xz |
Add ALSA, improve OSS and remove OSS4
Diffstat (limited to 'libmatemixer/matemixer-device-profile.h')
-rw-r--r-- | libmatemixer/matemixer-device-profile.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libmatemixer/matemixer-device-profile.h b/libmatemixer/matemixer-device-profile.h index e8fae19..8e4221a 100644 --- a/libmatemixer/matemixer-device-profile.h +++ b/libmatemixer/matemixer-device-profile.h @@ -20,6 +20,7 @@ #include <glib.h> #include <glib-object.h> +#include <libmatemixer/matemixer-types.h> G_BEGIN_DECLS @@ -36,7 +37,6 @@ G_BEGIN_DECLS #define MATE_MIXER_DEVICE_PROFILE_GET_CLASS(o) \ (G_TYPE_INSTANCE_GET_CLASS ((o), MATE_MIXER_TYPE_DEVICE_PROFILE, MateMixerDeviceProfileClass)) -typedef struct _MateMixerDeviceProfile MateMixerDeviceProfile; typedef struct _MateMixerDeviceProfileClass MateMixerDeviceProfileClass; typedef struct _MateMixerDeviceProfilePrivate MateMixerDeviceProfilePrivate; @@ -56,8 +56,9 @@ struct _MateMixerDeviceProfileClass GType mate_mixer_device_profile_get_type (void) G_GNUC_CONST; const gchar *mate_mixer_device_profile_get_name (MateMixerDeviceProfile *profile); -const gchar *mate_mixer_device_profile_get_description (MateMixerDeviceProfile *profile); +const gchar *mate_mixer_device_profile_get_label (MateMixerDeviceProfile *profile); guint mate_mixer_device_profile_get_priority (MateMixerDeviceProfile *profile); + guint mate_mixer_device_profile_get_num_input_streams (MateMixerDeviceProfile *profile); guint mate_mixer_device_profile_get_num_output_streams (MateMixerDeviceProfile *profile); |