diff options
Diffstat (limited to '')
-rw-r--r-- | src/replay_gain_ape.h (renamed from src/normalize.h) | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/src/normalize.h b/src/replay_gain_ape.h index a8144951d..8525ac85e 100644 --- a/src/normalize.h +++ b/src/replay_gain_ape.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2009 The Music Player Daemon Project + * Copyright (C) 2003-2010 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,18 +17,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_NORMALIZE_H -#define MPD_NORMALIZE_H +#ifndef MPD_REPLAY_GAIN_APE_H +#define MPD_REPLAY_GAIN_APE_H -struct audio_format; +#include "check.h" -extern int normalizationEnabled; +#include <stdbool.h> -void initNormalization(void); +struct replay_gain_info; -void finishNormalization(void); +bool +replay_gain_ape_read(const char *path_fs, struct replay_gain_info *info); -void normalizeData(char *buffer, int bufferSize, - const struct audio_format *format); - -#endif /* !NORMALIZE_H */ +#endif |