summaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* alsa: cover "Internal Mic" elementsLennart Poettering2010-02-219-0/+98
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=562216
* alsa: cover 'Shared Mic/Line in', 'Analog Source'Lennart Poettering2010-02-211-0/+25
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=558638
* alsa: cover "Desktop Speaker" mixer elementsLennart Poettering2010-02-219-8/+131
| | | | As exposed by really old Microsoft USB sound systems
* virtual-source: boilerplate virtual source for PCM processing on inputsPierre-Louis Bossart2010-02-171-0/+771
|
* virutal-sink: boilerplate virtual sink to add PCM processingPierre-Louis Bossart2010-02-171-0/+635
|
* native: rework handling of seeks that depend on variables the client does ↵Lennart Poettering2010-02-092-4/+4
| | | | | | | | | | | | not know anything about All seeks/flushes that depend on the playback buffer read pointer cannot be accounted for properly in the client since it does not know the actual read pointer. Due to that the clients do not account for it at all. We need do the same on the server side. And we did, but a little bit too extreme. While we properly have not applied the changes to the "request" counter we still do have to apply it to the "missing" counter. This patch fixes that.
* udev: use ID_MODEL_ENC instead of ID_MODEL if it is setLennart Poettering2010-02-091-0/+110
| | | | | | | | | That way we should be able to make use of the nicer USB strings the USB hw provides. Fixes the issues pointed out in: https://tango.0pointer.de/pipermail/pulseaudio-discuss/2010-January/006248.html
* alsa: cover bass boost mixer elementLennart Poettering2010-02-092-0/+13
| | | | http://pulseaudio.org/ticket/740
* udev: rework modem detection a bitLennart Poettering2010-02-091-55/+62
| | | | Check every single pcm device of a card whether it is a modem.
* udev: handle sound cards with both modem and audio properlyDaniel T. Chen2010-02-091-3/+56
| | | | | http://pulseaudio.org/ticket/681 https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/394500
* alsa: Cover the 'Int Mic Boost' element.Colin Guthrie2010-02-091-0/+9
| | | | | | | | | | This is not 100% ideal as we have not way to tie specific boosts to specific inputs and this particular chipset (as noted in #772) appears to support just that. For the time being incorporate it into the normal boost logic. See http://pulseaudio.org/ticket/772
* alsa: cover Input Source:Int MicColin Guthrie2010-02-091-0/+4
| | | | | As seen on some HDA chips (e.g. Fujitsu Siemens S6410) Refs http://pulseaudio.org/ticket/772
* alsa: ignore volume changes from the hw if we are not on the active consoleLennart Poettering2010-02-092-0/+6
|
* udev: make sure we get events only for sound devicesLennart Poettering2010-02-091-0/+5
|
* bluetooth: fix invalid memory accessLennart Poettering2010-02-091-1/+7
| | | | | | | | When an GetProperties() reply arrives after we already deleted the device structure for it make sure we don't accidentaly touch the invalidated object. https://bugzilla.redhat.com/show_bug.cgi?id=543205
* udev: don't forget to unref devices we are not interested inLennart Poettering2010-02-091-1/+3
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=552932
* bluetooth: don't hit an assert if latency is queried for a stooped recording ↵Lennart Poettering2010-02-091-3/+7
| | | | | | stream https://bugzilla.redhat.com/show_bug.cgi?id=537422
* bluetooth: destruct stream only if it is not already destructedLennart Poettering2010-02-091-13/+15
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=551842
* core: make sure we always return a valid memblock in sink_input_pop() callbacksLennart Poettering2010-02-092-2/+6
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=553607
* dbus: remove filter functions only if they were actually set beforeLennart Poettering2010-02-095-15/+27
| | | | | | | This fixes an assert when destructing modules that have not been fully initialized. https://bugzilla.redhat.com/show_bug.cgi?id=548525
* stream-restore: Clear the save_sink/save_source flags on apply_entry.Colin Guthrie2010-02-051-12/+36
| | | | | | | | | | | If the user specifically removes the device element from the stream restore rule, we have to clear the save_sink/save_source flag of the stream. This means that other stream routing systems (e.g. module-device-manager) can take over routing for this stream. In order to facilitate the reapplication of other routing rules, we fire a stream change event. Arguably the stream itself has not changed, but the rules governing its routing have, so I feel this is justified.
* native: when run in system mode, do not look for fallback portLennart Poettering2010-01-141-1/+1
|
* native: fallback to another port if the default port is takenLennart Poettering2010-01-141-4/+9
| | | | | | | Unless the port number is explicitly configured we will now fallback to a kernel picked port if the one we'd like by default we cannot get. http://pulseaudio.org/ticket/773
* Merge remote branch 'zonque/topic/osx'Lennart Poettering2010-01-057-12/+1567
|\
| * osx: add native zeroconf implementation via BonjourDaniel Mack2009-12-161-0/+516
| | | | | | | | | | | | | | | | | | | | | | Avahi and dbus is too heavy for OSX just for the sake of publishing our services via mDNS/Zeroconf. Apple has its own Zeroconf implementation called Bonjour, and this patch adds a module that implements service announcement with that API. All data gathering is copied from module-zeroconf-publish.c, but unfortunately the code there is too specifically made for avahi, so I couldn't factor it out to reuse it.
| * CoreAudio: add audio device moduleDaniel Mack2009-12-161-0/+820
| | | | | | | | | | | | | | | | | | | | | | | | This patch adds support for CoreAudio driven devices under Mac OS X. It is typically instanciated by the CoreAudio device detection module and handles all available streams on a specific device. Sinks are created according to the reported stream configuration. Float32 is used as default audio sample format at it is the only format CoreAudio speaks natively. Hardware volume control is not implemented yet.
| * CoreAudio: add device detection moduleDaniel Mack2009-12-161-0/+229
| | | | | | | | | | | | | | This adds a new module for CoreAudio device detection. It registers a callback to detect hotplugged devices and creates/destroys modules named 'module-coreaudio-device'. Devices are identified via a system-wide unique AudioDeviceID.
| * poll() is totally broken on Mac OS XDaniel Mack2009-12-164-12/+2
| | | | | | | | | | | | Even on 10.5.8, poll() does not do the right thing. Haven't checked on newer versions. Hence, wrap all occurences of poll() to pa_poll and emulate that call with select() on OSX. This is totally embarassing.
* | Fix typo in log message: s/may no be/may not be/chocolateboy2010-01-051-1/+1
| | | | | | | | | | | | | | | | | | Hi, Lennart. Spotted another typo. Patch attached. Best wishes, chocolateboy.
* | alsa: add profile set for M-Audio FastTrack Pro USBDavid Kågedal2010-01-052-0/+86
| |
* | udev: Use SOUND_CLASS instead of SOUND_FORM_FACTOR when checking for modemDaniel T Chen2010-01-051-1/+1
|/ | | | | | | The fact whether an ALSA card is a modem is stored in the SOUND_CLASS, not the SOUND_FORM_FACTOR property. So read it from there. Patch from Whoopie.
* stream-restore: At startup, create dbus entries only for valid database entries.Tanu Kaskinen2009-12-031-2/+7
|
* stream-restore: Add a missing pa_xnew0() call in handle_add_entry().Tanu Kaskinen2009-12-031-0/+1
|
* stream-restore: Fix a few assertion misuses with the D-Bus code.Tanu Kaskinen2009-12-031-5/+5
|
* Merge remote branch 'tanuk/master'Colin Guthrie2009-11-301-0/+2
|\
| * Merge branch 'master' of git://0pointer.de/pulseaudioTanu Kaskinen2009-10-131-4/+4
| |\
| * | dbusiface-client: Fix the destructor (stop leaking stuff).Tanu Kaskinen2009-10-091-0/+2
| | |
* | | Avoid using devname as a variable name.Diego Elio 'Flameeyes' Pettenò2009-11-211-7/+7
| | | | | | | | | | | | On FreeBSD, devname() is a system function, and was overshadowed.
* | | Rename all the signal parameters and variables to something more explicit.Diego Elio 'Flameeyes' Pettenò2009-11-219-293/+293
| | | | | | | | | | | | | | | Without this change, on FreeBSD you'll be bothered by tons of warnings about overshadowing signal(2).
* | | Merge remote branch 'phish3/master'Lennart Poettering2009-11-211-22/+65
|\ \ \
| * | | module-equalizer-sink: add latency of output_q and input_q to get latency ↵Jason Newton2009-11-201-2/+3
| | | | | | | | | | | | | | | | calculation
| * | | module-equalizer-sink: switch back to reference dsp implementation - cpu ↵Jason Newton2009-11-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | usage doesn't really change and there may be a bug in the vectorized version
| * | | module-equalizer-sink: (re)added output memblockq commented out timing debug ↵Jason Newton2009-11-201-19/+61
| | | | | | | | | | | | | | | | statements
* | | | Include sys/filio.h if present; this makes use of FIONREAD on Solaris.Diego Elio 'Flameeyes' Pettenò2009-11-202-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | FIONREAD on OpenSolaris is declared in sys/filio.h. The RTP modules already rely on the presence of FIONREAD, and check for the header, so this brings the pipe source and sink modules on par with them.
* | | | Don't declare the variable l if FIONREAD is not defined.Diego Elio 'Flameeyes' Pettenò2009-11-202-2/+4
| | | | | | | | | | | | | | | | This avoids two warnings due to FIONREAD not being defined.
* | | | Fix build on Solaris: pass the third parameter to pa_cloexec_open.Diego Elio 'Flameeyes' Pettenò2009-11-201-1/+1
| | | |
* | | | alsa: fix minor sampling rate deviations before adjusting the buffer sizeLennart Poettering2009-11-201-7/+9
| | | |
* | | | alsa: fix log output when the audio device refuses to give us again the same ↵Lennart Poettering2009-11-202-2/+2
|/ / / | | | | | | | | | period settings we had before
* | | rygel: fix itemCount property for sourcesLennart Poettering2009-11-181-11/+34
| | | | | | | | | | | | Fixes http://pulseaudio.org/ticket/721
* | | jack: never try to autoconnect to MIDI portsLennart Poettering2009-11-052-2/+2
| | | | | | | | | | | | | | | | | | Original patch supplied by 'adi' http://pulseaudio.org/ticket/669