summaryrefslogtreecommitdiffstats
path: root/polyp/pcm_polyp.c
Commit message (Collapse)AuthorAgeFilesLines
* Follow Polypaudio/PulseAudio name changePierre Ossman2006-07-121-748/+0
| | | | | | | | Polypaudio recently changed its name to PulseAudio which affects the names of libraries of header files. Update the polyp, now pulse, plug-in to follow this name change. Signed-off-by: Pierre Ossman <ossman@cendio.se>
* Update Polypaudio plug-in to the 0.9.0 APIPierre Ossman2006-05-291-107/+128
| | | | | | | | | The new version of Polypaudio includes a threading abstraction that allows application of a more synchronous nature to use the API more easily. Using this, the complexity of the Polypaudio plug-in is greatly reduced and also removes the risk of stalling the communications layer. Signed-off-by: Pierre Ossman <ossman@cendio.se>
* Make polypaudio plugin thread safePierre Ossman2006-03-081-57/+165
| | | | | | Add a mutex to make sure that the Polypaudio plugin is thread safe. Signed-off-by: Pierre Ossman <ossman@cendio.se>
* Incorrect revents in polypaudio pluginPierre Ossman2006-03-081-2/+2
| | | | | | | The revent flags POLLIN/POLLOUT got switched in the Polypaudio plugin. Most applications check both so it went unnoticed until now. Signed-off-by: Pierre Ossman <ossman@cendio.se>
* Properly terminate stream in polypaudio pluginPierre Ossman2006-03-081-19/+12
| | | | | | | | Some applications like to call prepare over and over again, recreating the stream each time. Previously we just cleaned up the local end each time, but this makes sure the server also releases its resources. Signed-off-by: Pierre Ossman <ossman@cendio.se>
* Fixes for polyp pluginTakashi Iwai2006-02-221-3/+3
| | | | | | | | | From: Pierre Ossman <ossman@cendio.se> There shouldn't be any more API changes until polypaudio 0.8 that affect this plugin. I am working on supporting capture volume and mute switches, but that should be a strict addition (i.e. it can wait until the next release if things get tight).
* Structure reorganziation, added polyp pluginTakashi Iwai2006-02-211-0/+626
- Reorganized the directory structure: Now each plugin(s) is loaded in own subdirectory. - Added polypaudio plugin by Pierre Ossman <ossman@cendio.se> - Fixed COPYING file to LGPL (under which all codes are released, so far)