| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
The state can be used to determine whether audio is currently playing
or not, which can be useful information.
https://gitlab.gnome.org/GNOME/libgnome-volume-control/merge_requests/8
|
| |
|
|
|
|
|
|
|
|
|
|
| |
gvc-mixer-card.c: In function ‘gvc_mixer_card_finalize’:
gvc-mixer-card.c:571:53: warning: cast between incompatible function types from ‘void (*)(GvcMixerCardProfile *)’ {aka ‘void (*)(struct <anonymous> *)’} to ‘void (*)(void *, void *)’ [-Wcast-function-type]
g_list_foreach (mixer_card->priv->profiles, (GFunc) free_profile, NULL);
gvc-mixer-stream.c: In function ‘gvc_mixer_stream_finalize’:
gvc-mixer-stream.c:1044:52: warning: cast between incompatible function types from ‘void (*)(GvcMixerStreamPort *)’ {aka ‘void (*)(struct <anonymous> *)’} to ‘void (*)(void *, void *)’ [-Wcast-function-type]
g_list_foreach (mixer_stream->priv->ports, (GFunc) free_port, NULL);
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Card in pa_source_info that is used as card-index is uint32_t so it
is never less then 0. Also index in GvcMixerCard is already unsigned
int that is used to compare with card-index. This fixes build
warning - comparison between signed and unsigned integer expressions.
https://bugzilla.gnome.org/show_bug.cgi?id=752244
|
| |
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=675902
|
|
|
|
|
|
| |
It's a prerequisite for accessing it from JS
https://bugzilla.gnome.org/show_bug.cgi?id=675902
|
|
|
|
|
| |
Fix includes, comments and parameter names so that introspection builds
without warnings.
|
|
Code from gnome-control-center, build system integration from gnome-shell
|