2006-07-22 03:14:29 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2006-07-22 03:14:29 +02:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2006-07-27 02:50:59 +02:00
|
|
|
#include "compress.h"
|
2006-07-22 03:14:29 +02:00
|
|
|
#include "conf.h"
|
|
|
|
#include "normalize.h"
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "os_compat.h"
|
2006-07-22 03:14:29 +02:00
|
|
|
|
2007-06-03 21:25:25 +02:00
|
|
|
#define DEFAULT_VOLUME_NORMALIZATION 0
|
|
|
|
|
2006-07-27 02:50:59 +02:00
|
|
|
int normalizationEnabled;
|
2006-07-22 03:14:29 +02:00
|
|
|
|
2006-07-30 10:56:55 +02:00
|
|
|
void initNormalization(void)
|
2006-07-22 03:14:29 +02:00
|
|
|
{
|
2007-09-06 01:59:33 +02:00
|
|
|
normalizationEnabled = getBoolConfigParam(CONF_VOLUME_NORMALIZATION, 1);
|
|
|
|
if (normalizationEnabled == CONF_BOOL_UNSET)
|
2007-06-03 21:25:25 +02:00
|
|
|
normalizationEnabled = DEFAULT_VOLUME_NORMALIZATION;
|
2006-07-22 03:14:29 +02:00
|
|
|
|
2006-07-27 02:50:59 +02:00
|
|
|
if (normalizationEnabled)
|
|
|
|
CompressCfg(0, ANTICLIP, TARGET, GAINMAX, GAINSMOOTH, BUCKETS);
|
|
|
|
}
|
2006-07-22 03:14:29 +02:00
|
|
|
|
2006-07-30 10:56:55 +02:00
|
|
|
void finishNormalization(void)
|
2006-07-27 02:50:59 +02:00
|
|
|
{
|
|
|
|
if (normalizationEnabled) CompressFree();
|
|
|
|
}
|
2006-07-22 03:14:29 +02:00
|
|
|
|
2006-07-27 02:50:59 +02:00
|
|
|
void normalizeData(char *buffer, int bufferSize, AudioFormat *format)
|
|
|
|
{
|
|
|
|
if ((format->bits != 16) || (format->channels != 2)) return;
|
2006-07-22 03:14:29 +02:00
|
|
|
|
2006-07-27 02:50:59 +02:00
|
|
|
CompressDo(buffer, bufferSize);
|
2006-07-22 03:14:29 +02:00
|
|
|
}
|