aboutsummaryrefslogtreecommitdiffstats
path: root/src/filter/FilterPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-01-21config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann1-6/+6
The old struct config_param remains only for top-level string options.
2015-01-21ConfigData: move struct config_param to Param.hxxMax Kellermann1-1/+1
2015-01-01Copyright year 2015Max Kellermann1-1/+1
2014-01-24Filter*: move to filter/Max Kellermann1-0/+0
2014-01-24Config*: move to config/Max Kellermann1-2/+2
2014-01-13copyright year 2014Max Kellermann1-1/+1
2013-11-28include cleanup using iwyuMax Kellermann1-1/+0
2013-10-19*: use nullptr instead of NULLMax Kellermann1-5/+5
2013-09-05conf.h: remove obsolete headerMax Kellermann1-1/+1
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-04util/Error: new error passing libraryMax Kellermann1-14/+12
Replaces GLib's GError.
2013-08-04FilterPlugin: pass config_param referenceMax Kellermann1-5/+3
2013-02-02FilterInternal: convert struct filter to a OO interfaceMax Kellermann1-56/+2
2013-02-01filter: convert to C++Max Kellermann1-4/+4
2013-01-30conf.h: move the GQuark to ConfigQuark.hxxMax Kellermann1-0/+1
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-4/+9
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-14Fix and use filter_configured_new()Albin Eldstål-Damlin1-2/+6
2009-11-12include config.h in all sourcesMax Kellermann1-0/+1
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.
2009-07-03filter: added new plugin API for filtersMax Kellermann1-0/+106
The filter API allows us to implement software volume as a pluggable filter, and we will be able to integrate libraries like SoX.