aboutsummaryrefslogtreecommitdiff
path: root/src/filter/volume_filter_plugin.c
Commit message (Collapse)AuthorAge
* filter/volume: include cleanupMax Kellermann2012-08-15
|
* audio_format: remove the reverse_endian attributeMax Kellermann2012-03-21
| | | | | | Eliminate support for reverse endian samples from the MPD core. This moves a lot of complexity to the plugins that really need it (only ALSA and CDIO currently).
* pcm_{mix,volume}: pass only sample_format to pcm_mix()Max Kellermann2011-10-10
| | | | The other audio_format attributes are not used.
* copyright year 2011Max Kellermann2011-01-29
|
* filter/volume: assign dest_size_r early, eliminate oneMax Kellermann2010-02-15
|
* Update copyright notices.Avuton Olrich2009-12-31
|
* filter_plugin: allow open() to force an input formatMax Kellermann2009-12-25
| | | | | | | Make the audio_format argument non-const. Allow the open() method to modify it, to indicate that it wants a different input audio format than the one specified. Check that condition in chain_filter_open(), and fail.
* filter/volume: support 32 bit samplesMax Kellermann2009-12-25
| | | | | The pcm_volume library supports 32 bit samples, there's no reason to disallow it in the filter plugin.
* 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.
* filter/volume: check the flag audio_format.reverse_endianMax Kellermann2009-07-22
| | | | The volume plugin does not work for reverse_endian samples.
* 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/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.