filter/FilterConfig: rename to LoadChain.cxx

This commit is contained in:
Max Kellermann 2018-01-02 23:09:36 +01:00
parent bbabb7a14c
commit 5ede02aed8
4 changed files with 5 additions and 10 deletions

View File

@ -104,7 +104,7 @@ libmpd_a_SOURCES = \
src/decoder/Bridge.cxx src/decoder/Bridge.hxx \
src/decoder/DecoderPrint.cxx src/decoder/DecoderPrint.hxx \
src/filter/LoadOne.cxx src/filter/LoadOne.hxx \
src/filter/FilterConfig.cxx src/filter/FilterConfig.hxx \
src/filter/LoadChain.cxx src/filter/LoadChain.hxx \
src/filter/FilterPlugin.hxx \
src/filter/Filter.hxx \
src/filter/Prepared.hxx \

View File

@ -18,7 +18,7 @@
*/
#include "config.h"
#include "FilterConfig.hxx"
#include "LoadChain.hxx"
#include "LoadOne.hxx"
#include "Prepared.hxx"
#include "plugins/ChainFilterPlugin.hxx"

View File

@ -17,13 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/** \file
*
* Utility functions for filter configuration
*/
#ifndef MPD_FILTER_CONFIG_HXX
#define MPD_FILTER_CONFIG_HXX
#ifndef MPD_FILTER_LOAD_CHAIN_HXX
#define MPD_FILTER_LOAD_CHAIN_HXX
class PreparedFilter;

View File

@ -27,7 +27,7 @@
#include "mixer/MixerType.hxx"
#include "mixer/MixerControl.hxx"
#include "mixer/plugins/SoftwareMixerPlugin.hxx"
#include "filter/FilterConfig.hxx"
#include "filter/LoadChain.hxx"
#include "filter/Prepared.hxx"
#include "filter/plugins/AutoConvertFilterPlugin.hxx"
#include "filter/plugins/ConvertFilterPlugin.hxx"