aboutsummaryrefslogtreecommitdiff
path: root/src/filter
Commit message (Collapse)AuthorAge
* audio_format: changed "bits" to "enum sample_format"Max Kellermann2009-12-02
| | | | | | This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value.
* include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* pcm_convert: use GError for error handlingMax Kellermann2009-07-23
| | | | | Don't abort the whole MPD process when the conversion fails. This has been a denial-of-service attack vector for years.
* filter/volume: check the flag audio_format.reverse_endianMax Kellermann2009-07-22
| | | | The volume plugin does not work for reverse_endian samples.
* Add reverse_endian field to struct audio_format and handle conversionDavid Woodhouse2009-07-19
|
* mixer/software: new mixer which controls filter/volumeMax Kellermann2009-07-06
| | | | | | | This mixer plugin may be used instead of the traditional global software mixer. It integrates with the "volume" filter plugin, and can control the software volume of an audio output which has no hardware mixer.
* filter/convert: new filter which calls pcm_convert() on demandMax Kellermann2009-07-06
|
* filter/chain: new library for creating a chain of filtersMax Kellermann2009-07-06
|
* filter/volume: don't use volume_level_get()Max Kellermann2009-07-05
| | | | Added public methods to get and set the current volume.
* filter: added "volume" pluginMax Kellermann2009-07-03
| | | | | | | | | | The "volume" filter plugin will replace the current software volume code. One "volume" filter may be attached to each output device. This will allow the user to use hardware mixers for some devices, and software mixers for other devices at the same time. Currently, neither the filter API nor the "volume" plugin is integrated into MPD.
* filter: added new plugin API for filtersMax Kellermann2009-07-03
The filter API allows us to implement software volume as a pluggable filter, and we will be able to integrate libraries like SoX.