summaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* bluetooth: don't init profile when offMarc-André Lureau2009-03-041-5/+10
|
* bluetooth: service_fd could be 0Marc-André Lureau2009-03-041-2/+2
|
* bluetooth: hsp case, check l for appropriate error messageMarc-André Lureau2009-03-041-1/+1
|
* never try to suspend monitor sources, suspend the sinks they belong to insteadLennart Poettering2009-03-041-13/+50
|
* various smaller cleanupsLennart Poettering2009-03-042-18/+7
|
* pa_xnew cannot fail -- that's what the x is in the nameLennart Poettering2009-03-041-3/+1
|
* fix device reservation for system modeLennart Poettering2009-03-033-2/+9
|
* revive solaris moduleFinn Thain2009-03-033-334/+635
| | | | | | | | | | | | | | | | | | | | | | | | | | | Hi All, This patch fixes the solaris audio device source and sink, and fixes some portability issues that break the build on solaris. Questions and comments welcomed. I've tested this patch only with OpenSolaris Express snv 103. Eventually I hope to be able to test a few older releases and older hardware (though it is hard to say whether there is much interest in those). This is my first brush with pulseaudio and so I read the wiki docs and some of the source code but I'm still unsure of a few things. In particular I'm wondering about rewind processing, corking and what (if anything) the module needs for those. I'm also unclear on the implications of thread_info.buffer_size, .fragment_size and .max_request, and whether my code is correct or not. This patch disables link map/library versioning unless ld is GNU ld. Another approach for solaris would be to use that linker's -M option, but I couldn't make that work (due to undefined mainloop, browse and simple symbols when linking pacat. I can post the errors if anyone is intested.) Thanks, Finn Thain
* Use LGPL 2.1 on all files previously using LGPL 2Colin Guthrie2009-03-0385-85/+85
|
* Merge commit 'coling/master'Lennart Poettering2009-03-022-2/+2
|\
| * Use pa_assert_se() when the containing code has side effects.Colin Guthrie2009-03-022-2/+2
| | | | | | | | As reported by rantala. Closes #502 and #503
* | run make update-sbcLennart Poettering2009-03-021-1/+2
| |
* | run update-reserveLennart Poettering2009-03-021-10/+11
| |
* | Merge commit 'coling/master'Lennart Poettering2009-03-026-38/+62
|\|
| * raop: Handle the reponse header memory allocation more sensibly.Colin Guthrie2009-03-011-29/+27
| | | | | | | | | | In theory the callback called after reading headers could free our whole object, so we should not take it upon ourselves to free the headers after the call to the callback.
| * raop: Log teardown explicitlyColin Guthrie2009-03-011-0/+4
| |
| * raop: Allow for nice sink descriptions to be set (interpolated from avahi)Colin Guthrie2009-03-012-7/+29
| |
| * Don't assume that device reservation is enabled.Colin Guthrie2009-02-282-2/+2
| | | | | | | | | | | | | | In the case when the alsa 'device' is not a physical card, it wont have an index and thus the reservation name will be NULL and therefore we will not initialise the reservation system. Fixes #498
* | add logic for initializing a useful icon nameLennart Poettering2009-03-015-20/+11
| |
* | get additional device data from udevLennart Poettering2009-03-018-11/+221
| |
* | rename PA_PROP_DEVICE_CONNECTOR to PA_PROP_DEVICE_BUSLennart Poettering2009-03-011-1/+1
| |
* | revise form factor list a bit, simplify and use singular everywhereLennart Poettering2009-03-011-2/+2
|/
* when alsa tweaks our sample_spec make sure we adjust the watermark accordinglyLennart Poettering2009-02-272-4/+6
|
* when an underrun happens, increase watermark by 10ms instead of doubling itLennart Poettering2009-02-272-10/+39
|
* set reserve interface application device nameLennart Poettering2009-02-245-1/+48
|
* don't put both the card and the pcm name in the description of a device if ↵Lennart Poettering2009-02-241-3/+3
| | | | one contains the other
* update reserve.c from upstream gitLennart Poettering2009-02-241-1/+12
|
* implement device reservation schemeLennart Poettering2009-02-249-1/+1090
|
* in case alsa lies to use don't spin foreverLennart Poettering2009-02-242-0/+37
|
* if ALSA gives us nonsensical data at least try to fix it up a littleLennart Poettering2009-02-241-4/+15
|
* Merge commit 'coling/master'Lennart Poettering2009-02-242-6/+6
|\
| * Remove references to trademarked terms.Colin Guthrie2009-02-222-6/+6
| | | | | | | | | | | | | | | | | | According to http://www.apple.com/legal/trademark/appletmlist.html we could run into problems for using these terms without also displaying a corresponding disclaimer/attribution notice. This is difficult in the context of a headless server, so simply don't use such terms. In GUI apps which can enable this functionality we should use the relevant terminology, and display the appropriate attribution notices.
* | use pa_alsa_safe_delay() where appropriateLennart Poettering2009-02-232-2/+2
| |
* | print driver name when we encounter driver bugsLennart Poettering2009-02-233-18/+38
| |
* | add new wrapper pa_alsa_safe_delay() around snd_pcm_delay()Lennart Poettering2009-02-232-0/+38
| |
* | add new function pa_alsa_get_driver_name_by_pcm()Lennart Poettering2009-02-232-0/+17
|/
* rework suspending/resumingLennart Poettering2009-02-221-60/+87
|
* initialize selem indexLennart Poettering2009-02-221-1/+2
|
* make sure we don't choke on overly long lines in .desktop filesLennart Poettering2009-02-211-0/+2
|
* prefer profiles that match the default channel mapLennart Poettering2009-02-211-5/+26
|
* print warnings about driver bugs at most onceLennart Poettering2009-02-213-22/+36
|
* introduce default channel map in addition to the default sample specLennart Poettering2009-02-2111-6/+26
|
* bluetooth: fix suspend on a2dp (to do on HSP non SCO over PCM)Marc-André Lureau2009-02-201-13/+64
| | | | | | | | | | - s/setup_stream_fd/start_stream_fd - introduce stop_stream_fd to suspend properly the stream_fd (does not seem necessary when shuting down) - move {start,stop}_stream_fd to IO thread, it is also a good idea because it takes about 1s to setup.
* Merge branch 'master' of ssh://rootserver/home/lennart/git/public/pulseaudioLennart Poettering2009-02-2014-23/+53
|\
| * Merge commit '38ded3bb31bc49664641965f856a35f432a8a956'Lennart Poettering2009-02-197-12/+36
| |\
| | * bluetooth: print SBC encoder implementation infoMarc-André Lureau2009-02-181-0/+5
| | | | | | | | | | | | | | | The encoder initialization is done lazily, so we can only get the information once encoding start. This is abit annoying..
| | * bluetooth: don't crash on pa_thread_mq_done() if pa_init() failMarc-André Lureau2009-02-181-2/+2
| | |
| | * bluetooth: update SBC from upstreamMarc-André Lureau2009-02-186-2/+21
| | |
| | * bluetooth: fix message queue/rtpollLennart Poettering2009-02-161-8/+8
| | |
| * | alsa-util: check if mixer_poll_descriptors_count() < 0Marc-André Lureau2009-02-191-2/+6
| | |