filter_config: convert to C++

This commit is contained in:
Max Kellermann
2013-01-30 17:22:44 +01:00
parent 01dd540d7e
commit f2a3a37dff
4 changed files with 15 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2003-2011 The Music Player Daemon Project
* Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -17,17 +17,20 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "filter_config.h"
#include "config.h"
#include "FilterConfig.hxx"
#include "conf.h"
extern "C" {
#include "filter/chain_filter_plugin.h"
}
#include "filter_plugin.h"
#include "filter_internal.h"
#include "filter_registry.h"
#include <string.h>
static GQuark
filter_quark(void)
{
@@ -83,7 +86,7 @@ filter_chain_parse(struct filter *chain, const char *spec, GError **error_r)
// Split on comma
gchar** tokens = g_strsplit_set(spec, ",", 255);
int added_filters = 0;
unsigned added_filters = 0;
// Add each name to the filter chain by instantiating an actual filter
char **template_names = tokens;

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2003-2011 The Music Player Daemon Project
* Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -22,15 +22,12 @@
* Utility functions for filter configuration
*/
#ifndef MPD_FILTER_CONFIG_H
#define MPD_FILTER_CONFIG_H
#ifndef MPD_FILTER_CONFIG_HXX
#define MPD_FILTER_CONFIG_HXX
#include "conf.h"
#include "filter/chain_filter_plugin.h"
#include "filter_plugin.h"
#include "filter_internal.h"
#include "filter_registry.h"
#include "gerror.h"
struct filter;
/**
* Builds a filter chain from a configuration string on the form

View File

@@ -20,6 +20,7 @@
#include "config.h"
#include "OutputControl.hxx"
#include "OutputList.hxx"
#include "FilterConfig.hxx"
extern "C" {
#include "output_api.h"
@@ -31,7 +32,6 @@ extern "C" {
#include "mixer/software_mixer_plugin.h"
#include "filter_plugin.h"
#include "filter_registry.h"
#include "filter_config.h"
#include "filter/chain_filter_plugin.h"
#include "filter/autoconvert_filter_plugin.h"
}