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
|
|
|
|
*/
|
|
|
|
|
2008-04-12 06:19:26 +02:00
|
|
|
#include "normalize.h"
|
2006-07-27 02:50:59 +02:00
|
|
|
#include "compress.h"
|
2006-07-22 03:14:29 +02:00
|
|
|
#include "conf.h"
|
2008-09-07 19:19:55 +02:00
|
|
|
#include "audio_format.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
|
|
|
{
|
2009-01-17 20:23:33 +01:00
|
|
|
normalizationEnabled = config_get_bool(CONF_VOLUME_NORMALIZATION,
|
|
|
|
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
|
|
|
|
2008-09-07 19:19:55 +02:00
|
|
|
void normalizeData(char *buffer, int bufferSize,
|
|
|
|
const struct audio_format *format)
|
2006-07-27 02:50:59 +02:00
|
|
|
{
|
|
|
|
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
|
|
|
}
|