aboutsummaryrefslogtreecommitdiffstats
path: root/src/filter/plugins/NormalizeFilterPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-01-21config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann1-1/+1
The old struct config_param remains only for top-level string options.
2015-01-01Copyright year 2015Max Kellermann1-1/+1
2014-08-12Filter: FilterPCM() returns ConstBufferMax Kellermann1-11/+9
API simplification. We can now avoid abusing a "size_t*" as additional return value.
2014-01-24Filter*: move to filter/Max Kellermann1-3/+3
2014-01-13copyright year 2014Max Kellermann1-1/+1
2013-11-28include cleanup using iwyuMax Kellermann1-1/+0
2013-09-04util/Error: new error passing libraryMax Kellermann1-5/+5
Replaces GLib's GError.
2013-08-04FilterPlugin: pass config_param referenceMax Kellermann1-1/+1
2013-08-03audio_format: convert to C++Max Kellermann1-6/+6
2013-07-30pcm_buffer: convert to C++Max Kellermann1-5/+4
2013-04-09pcm_*: move to src/pcm/Max Kellermann1-1/+1
2013-02-02FilterInternal: convert struct filter to a OO interfaceMax Kellermann1-45/+24
2013-02-02filter/*: don't use GLib macrosMax Kellermann1-10/+4
2013-02-01filter: convert to C++Max Kellermann1-12/+11
2012-03-21audio_format: remove the reverse_endian attributeMax Kellermann1-1/+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-01-29copyright year 2011Max Kellermann1-1/+1
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-25filter_plugin: allow open() to force an input formatMax Kellermann1-14/+4
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.
2009-12-14filter: added normalize filter pluginMax Kellermann1-0/+123
Wrap the AudioCompress library in a filter plugin.