aboutsummaryrefslogtreecommitdiffstats
path: root/src/filter (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-10-18filter/route: merge the two loops, one-pass parsingMax Kellermann1-61/+42
2013-10-18filter/route: allocate "sources" staticallyMax Kellermann1-14/+6
Worst-case allocation using MAX_CHANNELS.
2013-10-18filter/route: use int8_t instead of signed charMax Kellermann1-13/+11
2013-10-15Client, ...: remove unnecessary glib.h includeMax Kellermann2-4/+0
2013-10-15gcc.h: rename to Compiler.hMax Kellermann1-1/+1
2013-10-02replay_gain_*.h: rename to *.hxxMax Kellermann2-3/+3
2013-10-02Log: new logging library APIMax Kellermann1-10/+8
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-05conf.h: remove obsolete headerMax Kellermann4-4/+1
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-04util/Error: new error passing libraryMax Kellermann8-91/+87
Replaces GLib's GError.
2013-08-07add missing includesMax Kellermann2-0/+4
2013-08-07filter/Route: don't access PcmBuffer attributes directlyMax Kellermann1-5/+5
Return the pointer given by PcmBuffer::Get() instead of reaching into the PcmBuffer object.
2013-08-04FilterPlugin: pass config_param referenceMax Kellermann8-14/+15
2013-08-03audio_format: convert to C++Max Kellermann9-93/+85
2013-08-03gcc.h: add macro gcc_unreachable()Max Kellermann1-0/+1
2013-07-30pcm_buffer: convert to C++Max Kellermann4-27/+16
2013-07-29audio_check: convert to C++Max Kellermann1-1/+1
2013-04-16MixerInternal: convert to classMax Kellermann2-5/+5
2013-04-09pcm_*: move to src/pcm/Max Kellermann5-7/+7
2013-02-22mixer_plugin: convert to C++Max Kellermann1-1/+1
2013-02-02FilterInternal: convert struct filter to a OO interfaceMax Kellermann13-586/+413
2013-02-02filter/*: don't use GLib macrosMax Kellermann6-26/+20
2013-02-01filter/Chain: use std::forward_list instead of GSListMax Kellermann1-41/+20
2013-02-01filter: convert to C++Max Kellermann9-80/+79
2013-01-31pcm_*: convert to C++Max Kellermann2-2/+2
2013-01-31mixer/software, filter/volume: convert to C++Max Kellermann2-12/+13
2013-01-31filter/convert: remove unused attributeMax Kellermann1-5/+0
2013-01-31pcm_convert: convert to C++Max Kellermann1-8/+9
2013-01-30filter/convert: convert to C++Max Kellermann4-65/+69
2013-01-30filter/autoconvert: include cleanupMax Kellermann1-5/+3
2013-01-30conf.h: move the GQuark to ConfigQuark.hxxMax Kellermann1-0/+1
2013-01-30filter/chain, encoder: GLib include cleanupMax Kellermann1-0/+2
2013-01-29test/{read_conf,run_filter}: convert to C++Max Kellermann1-1/+1
2013-01-07filter/replay_gain: convert to C++Max Kellermann2-14/+18
2013-01-05filter/ReplayGain: add method _set_mode()Max Kellermann2-11/+20
Push the new mode to the filter instead of accessing global variables through replay_gain_get_real_mode().
2012-08-15filter/volume: include cleanupMax Kellermann1-1/+0
2012-08-02DatabaseVisitor, ...: use GError forward declarationMax Kellermann1-0/+1
2012-03-21audio_format: remove the reverse_endian attributeMax Kellermann4-6/+0
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).
2011-10-10pcm_{mix,volume}: pass only sample_format to pcm_mix()Max Kellermann2-2/+2
The other audio_format attributes are not used.
2011-10-10audio_format: convert reverse_endian to a "bool"Max Kellermann1-1/+1
2011-01-29copyright year 2011Max Kellermann13-13/+13
2010-08-23ReplayGain filter: allow gain > 100 %Johan Kiviniemi1-3/+11
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.
2010-06-06filter/route: fixed unsigned/signed comparisonMax Kellermann1-1/+1
Fixes a clang warning.
2010-05-30filter/replay_gain: added option "replaygain_limit"Daniel Seuthe1-5/+2
2010-05-18replay_gain_config: added function replay_gain_get_real_mode()Daniel Seuthe1-11/+2
2010-05-02filter/replay_gain: removed duplicate *dest_size_r assignmentMax Kellermann1-1/+0
2010-04-25replay_gain: added mode "auto"Daniel Seuthe1-3/+16
2010-02-17replay_gain: optionally use hardware mixer to apply replay gainMax Kellermann2-0/+58
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.
2010-02-17replay_gain: fall back to track gain if album gain is unavailableMax Kellermann1-2/+3
2010-02-17replay_gain: reimplement as a filter pluginMax Kellermann2-0/+230
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.
2010-02-15filter/volume: assign dest_size_r early, eliminate oneMax Kellermann1-4/+3