summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* gvc-mixer-control: fix build warningsAlberts Muktupāvels2015-09-151-11/+13
| | | | | | | | - Fix warning about comparison between signed and unsigned integer expressions - Change variable name 'output' to 'device' to fix warning: declaration of 'output' shadows a parameter - Fix warning about missing default case in switch
* gvc-mixer-stream: make card-index unsigned intAlberts Muktupāvels2015-09-152-5/+5
| | | | | | | | | 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
* gvc-mixer-ui-device: make stream-id unsigned intAlberts Muktupāvels2015-09-092-11/+11
| | | | | | GvcMixerStream id is unsigned int and starts with 1, so we can use 0 as invalid id. This fixes build error/warning - comparison between signed and unsigned integer expressions.
* gvc-mixer-ui-device: fix build warningsAlberts Muktupāvels2015-09-091-5/+5
|
* remove unneeded *_class_init and *_init declarationsAlberts Muktupāvels2015-09-0910-20/+0
|
* gvc-mixer-control: Fix bluetooth duplicatesDavid Henningsson2015-04-011-1/+1
| | | | | | | | | Entries are only hidden when available == PA_PORT_AVAILABLE_NO, so if an entry toggles between PA_PORT_AVAILABLE_YES and PA_PORT_AVAILABLE_UNKNOWN (Bluetooth headset switching between HSP/HFP and A2DP for example), this should not result in new entries being created. https://bugzilla.gnome.org/show_bug.cgi?id=697545
* gvc-mixer-ui-device: Fix memory leakJasper St. Pierre2013-09-041-0/+1
|
* <name> should match repository's name.Giovanni Campagna2013-08-211-1/+1
|
* build: fix building with -std=c99Cosimo Cecchi2013-07-091-1/+1
| | | | | | The "uint" type is not defined for standard C, and building with -std=c99 enable stricter conformance and results in compilation failing. Use "guint" instead.
* ui-device: Don't add off profilesDavid Henningsson2013-03-261-0/+5
| | | | | | | | | Right now, makes sure "Off" profiles are not added, because when selected, the item will disappear and there's no way to get it back (because it disappeared). In the long term, handling the "off" profile correctly would be better. https://bugzilla.gnome.org/show_bug.cgi?id=693654
* build: Ignore object files (*.o)Emanuele Aina2013-03-111-0/+1
|
* Add a GIcon accessor for GvcMixerUIDevicesGiovanni Campagna2013-02-185-1/+85
| | | | | | | | | | | This will allow to have different icons for internal audio cards (which are flagged generically as "audio-card"), depending on which port is in use (ie. headphones or speakers). This requires the new icon information, which is only exported by PulseAudio 3.0. If it's not available, we fallback to card icons like before. https://bugzilla.gnome.org/show_bug.cgi?id=689931
* build: Include .typelib in CLEANFILESFlorian Müllner2012-12-181-1/+2
|
* build: use correct -I$(srcdir)Colin Walters2012-12-081-1/+1
| | | | | This Makefile.am is designed for recursive Automake, so we should use -I$(srcdir), not -I$(srcdir)/gvc.
* GvcMixerStream: expose form factor from PulseAudioGiovanni Campagna2012-12-083-0/+43
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=675902
* Gvc: make GvcMixerStreamPort a boxed typeGiovanni Campagna2012-12-083-11/+28
| | | | | | It's a prerequisite for accessing it from JS https://bugzilla.gnome.org/show_bug.cgi?id=675902
* Fix warnings during buildBastien Nocera2012-11-271-1/+1
| | | | No need to include the $(srcdir)/gvc directory, it's us.
* Remove Gtk dependencyGiovanni Campagna2012-10-225-3106/+1
| | | | It is undesirable in gnome-settings-daemon
* Add DOAP fileGiovanni Campagna2012-10-221-0/+32
| | | | | Otherwise GNOME git rejects pushes. Added myself as maintainer because I created the repository.
* Fix introspection supportGiovanni Campagna2012-10-1918-50/+49
| | | | | Fix includes, comments and parameter names so that introspection builds without warnings.
* Add .gitignoreGiovanni Campagna2012-10-191-0/+8
| | | | Hand-edited because gnome-shell does not use git.mk
* Initial importGiovanni Campagna2012-10-1930-0/+10904
Code from gnome-control-center, build system integration from gnome-shell