aboutsummaryrefslogtreecommitdiffstats
path: root/src/FilterRegistry.hxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-02-01filter: convert to C++Max Kellermann1-3/+3
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-02-17replay_gain: reimplement as a filter pluginMax Kellermann1-0/+1
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.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-14filter: added normalize filter pluginMax Kellermann1-0/+1
Wrap the AudioCompress library in a filter plugin.
2009-12-14Initial (statically configured) route filter pluginAlbin Eldstål-Damlin1-0/+1
2009-07-06filter/convert: new filter which calls pcm_convert() on demandMax Kellermann1-0/+1
2009-07-06filter/chain: new library for creating a chain of filtersMax Kellermann1-0/+1
2009-07-03filter: added "volume" pluginMax Kellermann1-0/+1
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.
2009-07-03filter: added new plugin API for filtersMax Kellermann1-6/+8
The filter API allows us to implement software volume as a pluggable filter, and we will be able to integrate libraries like SoX.
2009-03-14mixer_api: moved mixer_plugin imports to mixer_list.hMax Kellermann1-17/+6
This patch allows the output plugins to import only mixer_list.h, instead of the full mixer_api.h (which would expose internal structures).
2009-03-14mixer_api: moved functions to mixer_control.cMax Kellermann1-23/+0
mixer_control.h should provide the functions needed to manipulate a mixer, without exposing the internal mixer API (which is provided by mixer_api.h).
2009-03-14mixer_api: moved struct mixer_plugin to mixer_plugin.hMax Kellermann1-41/+1
2009-03-13all: Update copyright header.Avuton Olrich1-3/+4
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-03-07pulse mixerDavid Guibert1-0/+1
This patch introduces the mixer for the pulse output. Technically speaking, the pulse index is needed to get or set the volume. You must define callback fonctions to get this index since the pulse output in mpd is done using the simpe api. The pulse simple api does not provide the index of the newly defined output. So callback fonctions are associated to the pulse context. The list of all the sink input is then retreived. Then we select the name of the mpd pulse output and control its volume by its associated index number. Signed-off-by: Patrice Linel <patnathanael@gmail.com> Signed-off-by: David Guibert <david.guibert@gmail.com> [mk: fixed whitespace errors and broke long lines; removed daemonization changes from main.c]
2009-03-02mixer: adding code to optionally disable all hw mixersViliam Mateicka1-0/+2
2009-02-16mixer: include cleanupMax Kellermann1-1/+3
Don't include conf.h in mixer_api.h. Use a forward struct declaration instead.
2009-02-16mixer_api: replaced method "control()" with "{get,set}_volume()"Max Kellermann1-6/+28
The method control() is too complicated, and overengineered. Replace it with two trivial functions: get_volume() and set_volume().
2009-01-25mixer_api: removed struct mixer_dataMax Kellermann1-9/+10
The mixer plugins should re-use the mixer struct and incorporate it in their object class.
2009-01-25mixer: merged methods "init" and "configure"Max Kellermann1-11/+3
Both methods are always called together. There is no point in having them separate. This simplifies the code, because the old configure() method could be called more than once, and had to free old allocations.
2009-01-25mixer: removed mixer_configure(), configure mixer in mixer_new()Max Kellermann1-2/+1
Allocate the mixer object when it is configured. Merged mixer_configure() into mixer_new(). mixer_new() was quite useless anyway.
2009-01-25mixer: return a mixer struct pointerMax Kellermann1-0/+7
Don't use statically allocated mixer objects.
2009-01-25mixer: make all mixer_plugin pointers constMax Kellermann1-4/+4
The plugin structures must never be modified.
2009-01-25mixer: added missing copyright headersMax Kellermann1-0/+17
2009-01-25conf: const pointers in block get functionsMax Kellermann1-2/+3
All config_get_block_*() functions should accept constant config_param pointers.
2009-01-17conf: no CamelCase, part IMax Kellermann1-2/+2
Renamed functions, types, variables.
2009-01-10Introducing mixer apiViliam Mateicka1-23/+51
This patch tryes to introduce pluggable mixer (struct mixer_plugin) along with some basic infrastructure (mixer_* functions). Instance of mixer (struct mixer) is used in alsa and oss output plugin
2009-01-04renaming mixer.h to mixer_api.hViliam Mateicka1-0/+0
2008-12-31Moving mixers to audio outputsViliam Mateicka1-0/+33