aboutsummaryrefslogtreecommitdiff
path: root/src/filter
Commit message (Collapse)AuthorAge
* mixer_plugin: convert to C++Max Kellermann2013-02-22
|
* FilterInternal: convert struct filter to a OO interfaceMax Kellermann2013-02-02
|
* filter/*: don't use GLib macrosMax Kellermann2013-02-02
|
* filter/Chain: use std::forward_list instead of GSListMax Kellermann2013-02-01
|
* filter: convert to C++Max Kellermann2013-02-01
|
* pcm_*: convert to C++Max Kellermann2013-01-31
|
* mixer/software, filter/volume: convert to C++Max Kellermann2013-01-31
|
* filter/convert: remove unused attributeMax Kellermann2013-01-31
|
* pcm_convert: convert to C++Max Kellermann2013-01-31
|
* filter/convert: convert to C++Max Kellermann2013-01-30
|
* filter/autoconvert: include cleanupMax Kellermann2013-01-30
|
* conf.h: move the GQuark to ConfigQuark.hxxMax Kellermann2013-01-30
|
* filter/chain, encoder: GLib include cleanupMax Kellermann2013-01-30
|
* test/{read_conf,run_filter}: convert to C++Max Kellermann2013-01-29
|
* filter/replay_gain: convert to C++Max Kellermann2013-01-07
|
* filter/ReplayGain: add method _set_mode()Max Kellermann2013-01-05
| | | | | Push the new mode to the filter instead of accessing global variables through replay_gain_get_real_mode().
* Merge branch 'v0.17.x'Max Kellermann2012-08-15
|\ | | | | | | | | Conflicts: src/player_thread.c
| * filter/volume: include cleanupMax Kellermann2012-08-15
| |
* | DatabaseVisitor, ...: use GError forward declarationMax Kellermann2012-08-02
|/
* 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.
* audio_format: convert reverse_endian to a "bool"Max Kellermann2011-10-10
|
* copyright year 2011Max Kellermann2011-01-29
|
* ReplayGain filter: allow gain > 100 %Johan Kiviniemi2010-08-23
| | | | | | | The ReplayGain filter clamped the gain to max. 100 % even if the algorithm determined the signal needed a boost. That would result in any such tracks being played with too low volume, effectively defeating the purpose of the filter.
* filter/route: fixed unsigned/signed comparisonMax Kellermann2010-06-06
| | | | Fixes a clang warning.
* filter/replay_gain: added option "replaygain_limit"Daniel Seuthe2010-05-30
|
* replay_gain_config: added function replay_gain_get_real_mode()Daniel Seuthe2010-05-18
|
* filter/replay_gain: removed duplicate *dest_size_r assignmentMax Kellermann2010-05-02
|
* replay_gain: added mode "auto"Daniel Seuthe2010-04-25
|
* replay_gain: optionally use hardware mixer to apply replay gainMax Kellermann2010-02-17
| | | | | | | | | | Add an option for each audio output which enables the use of the hardware mixer, instead of the software volume code. This is hardware specific, and assumes linear volume control. This is not the case for hardware mixers which were tested, making this patch somewhat useless, but we will use it to experiment with the settings, to find a good solution.
* replay_gain: fall back to track gain if album gain is unavailableMax Kellermann2010-02-17
|
* replay_gain: reimplement as a filter pluginMax Kellermann2010-02-17
| | | | | | | Apply the replay gain in the output thread. This means a new setting will be active instantly, without going through the whole music pipe. And we might have different replay gain settings for each audio output device.
* filter/volume: assign dest_size_r early, eliminate oneMax Kellermann2010-02-15
|
* Update copyright notices.Avuton Olrich2009-12-31
|
* filter: added the "autoconvert" filter pluginMax Kellermann2009-12-25
|
* 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.
* filter/route: check configured channel count in method init()Max Kellermann2009-12-25
| | | | Detect misconfiguration during MPD startup, not when playback begins.
* filter/route: route_filter_parse() returns boolMax Kellermann2009-12-25
| | | | Indicate success and error.
* filter/chain: return NULL if a filter() method has failedMax Kellermann2009-12-25
| | | | Don't close child filters in the filter() method.
* filter: added normalize filter pluginMax Kellermann2009-12-14
| | | | Wrap the AudioCompress library in a filter plugin.
* Fixed memory leak on incorrect route configurationAlbin Eldstål-Damlin2009-12-14
|
* Split filter_config into its own moduleAlbin Eldstål-Damlin2009-12-14
|
* Error reporting, pcm_buffer, performance tweaksAlbin Eldstål-Damlin2009-12-14
|
* Initial filter chain and filter configuration for outputs.Albin Eldstål-Damlin2009-12-14
|
* Initial (statically configured) route filter pluginAlbin Eldstål-Damlin2009-12-14
|
* 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.