summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-11-11core: make cpuid code compile cleanly with 32bit PIC0.9.19-stableLennart Poettering1-2/+6
2009-11-11core: adjust volume only when there is actually a memory blockLennart Poettering1-5/+6
Fixes an assert that is hit in somne niche cases: https://bugzilla.redhat.com/show_bug.cgi?id=533482
2009-11-11protocol: use the right sample rate for sourcesWim Taymans1-1/+1
Use the correct sample rate for reporting about the timing.
2009-11-11jack: never try to autoconnect to MIDI portsLennart Poettering2-2/+2
Original patch supplied by 'adi' http://pulseaudio.org/ticket/669
2009-11-11man: fix build with --disable-manpagesLennart Poettering1-23/+23
http://pulseaudio.org/ticket/698
2009-11-11alsa: disable timer-based scheduling inside a VMLennart Poettering4-8/+28
In virtual machines sound card clocks and OS scheduling tend to become unreliable, adding various 'uneven' latencies. The adaptive algorithm that handles drop-outs does not handle it this well: in contrast to drop-outs on real machines that are evenly distributed, small and can easily be encountered via the adpative algorithms, drop-outs in VMs tend to happen abruptly, and massively, which is not easy to counter. This patch simply disables timer based scheduling in VMs reverting to classic IO based scheduling. This should help make PA perform better in VMs. https://bugzilla.redhat.com/show_bug.cgi?id=532775
2009-11-11daemon: during startup say whether we run in a VMLennart Poettering1-1/+2
2009-11-11core-util: add call to detect if we are called from within a VMLennart Poettering2-0/+90
2009-11-11alsa: introduce more standard path namesLennart Poettering1-10/+14
2009-11-11alsa: cover 'Analog Output' controlLennart Poettering1-0/+17
http://pulseaudio.org/ticket/702
2009-11-11alsa: create a seperate mixer path for Speaker elementsLennart Poettering4-13/+107
On some cards line-out is independant of Sepaker and it is a good idea to cover that so that they can independantly be activated. https://bugzilla.redhat.com/show_bug.cgi?id=520884
2009-11-11alsa: leave other headphone control enabled if possibleLennart Poettering5-4/+22
2009-11-11alsa: lower priority for Headphone2 pathLennart Poettering1-1/+1
2009-11-11alsa: cover Input Source:AUX INLennart Poettering1-0/+4
As seen on some HDA chips: https://bugzilla.redhat.com/attachment.cgi?id=359804
2009-11-11alsa: cover Headphone2 mixer elementLennart Poettering4-2/+86
As seen on some drivers: https://bugzilla.redhat.com/show_bug.cgi?id=498612
2009-11-11alsa: cover 'Digital Input Source' elementLennart Poettering1-0/+14
As used by some HDA devices: https://bugzilla.redhat.com/attachment.cgi?id=365290
2009-11-11alsa: cover Mic Jack Mode elementLennart Poettering1-1/+12
As used by some HDA chips: https://bugzilla.redhat.com/attachment.cgi?id=366816
2009-11-11bluetooth: do not hand out access to devices that are not fully configured yetLennart Poettering1-2/+8
2009-11-11daemon: realpath segfault fixDavid Yoder1-1/+1
Lennart, Apparently I was debugging this at the same time as you. I can't figure out why my Fedora 11 install with glibc-2.10 has a glibc realpath that doesn't match the gnu documentation and returns null. But it does. Your commit aa8ce5bb9b159abb2ffb0f43996340566fc2e9c6 almost fixed my problem, but it needs a tweak. Thanks, David Yoder
2009-11-11sink: simplify silence checksWim Taymans1-12/+10
2009-11-11daemon: don't crash if pa_realpath() failsLennart Poettering1-10/+13
2009-11-11protocol-native: if a client set volume/mute/device store it since it is ↵Lennart Poettering1-2/+8
user input
2009-11-11libpulse: explain semantics of pa_stream_connect_playback() in more detailLennart Poettering1-1/+16
2009-11-11protocol-native: declare that user configured volumes are always absoluteLennart Poettering1-1/+3
2009-11-11libpulse: add missing includesLennart Poettering2-0/+4
2009-11-11Fix build when using -fweb, accept both register and memory constraints.Diego Elio 'Flameeyes' Pettenò2-4/+4
This was reported as Gentoo bug #287391 by Torsten Kaiser, and the fix was suggested by Mike Frysinger.
2009-11-11position-event-sounds: never position test sounds in spaceLennart Poettering1-1/+17
2009-11-11alsa: disable period event only with tsched=1Lennart Poettering4-5/+6
2009-11-11loopback: Setting latency of module-loopbackTor-Björn Claesson1-1/+1
I checked the source code, and latency_msec is missing from the list of valid module arguments. Attaching a patch to add it.
2009-11-11bluetooth: don't set auto_connect flag when discovering bt devicesLennart Poettering2-3/+12
2009-10-30svolume: fix MMX errorWim Taymans1-1/+6
We need to sign extend the lower part of the multiplication before adding it to the higher part. Makes -1 * 0xffff work again.
2009-09-30build-sys: bump sonamev0.9.19Lennart Poettering1-1/+1
2009-09-30i18n: run make update-poLennart Poettering30-1863/+8072
2009-09-29i18n: ad more .c files to POTFILES.inLennart Poettering1-0/+2
2009-09-29polkit: drop left-over polkit policy file from git treeLennart Poettering1-50/+0
2009-09-29Don't refuse to start on systems using GNU stow, graft, STORE et alNix1-2/+7
There are multiple package management systems out there which implement packages using symlinks. The recent (otherwise useful) check to ensure that a re-executed pulseaudio is actually reexecuting itself unfortunately breaks in the presence of all these packaging systems, because PA_BINARY refers to its installed location (e.g. /usr/local/bin/pulseaudio), which is a symlink to the binary (e.g. /usr/local/stow/pulseaudio-0.9.18/bin/pulseaudio), because /proc/self/exe always contains the canonical path of the executable, with all symlinks resolved. (At least one distribution uses a symlink-based packaging system, so will be forced to apply this locally in any case.) The fix is simple: canonicalize PA_BINARY before equality-testing. (This should be completely safe, because the OS does just that when PA_BINARY is executed.) The patch is against 0.9.18, but applies without fuzz to current master.
2009-09-29i18n: run make update-poLennart Poettering30-432/+772
2009-09-29Merge remote branch 'origin/master-tx'Lennart Poettering8-462/+303
2009-09-28reserve: downgrade reserve logic messages, so that reusing pa in two ↵Lennart Poettering1-5/+5
sessions does not create spew in syslog
2009-09-28Sending translation for Germanjsimon1-3/+3
2009-09-28Sending translation for Germanjsimon1-303/+168
2009-09-27Sending translation for Polishraven1-30/+30
2009-09-23svolume: tweak constraints for 32 bitsWim Taymans2-4/+4
Tweak the constraints a little so that register starved 32bit systems can select a stack variable for the channel paramter instead of reusing one of the registers we're using in the code.
2009-09-22Sending translation for Portugueseruigo1-45/+44
2009-09-22libpulse: Add *_NOFLAGS flags with value 0 for various enumsColin Guthrie1-0/+11
This avoids the need for ugly casting in client implementations.
2009-09-22Sending translation for Kannadashanky1-24/+18
2009-09-21Sending translation for Malayalamanipeter1-18/+12
2009-09-21Sending translation for Marathisandeeps1-14/+10
2009-09-21Sending translation for Telugukkrothap1-13/+10
2009-09-21Sending translation for Hindirajesh1-15/+11