Chris@1: /* grabbag - Convenience lib for various routines common to several tools Chris@1: * Copyright (C) 2002,2003,2004,2005,2006,2007 Josh Coalson Chris@1: * Chris@1: * This library is free software; you can redistribute it and/or Chris@1: * modify it under the terms of the GNU Lesser General Public Chris@1: * License as published by the Free Software Foundation; either Chris@1: * version 2.1 of the License, or (at your option) any later version. Chris@1: * Chris@1: * This library is distributed in the hope that it will be useful, Chris@1: * but WITHOUT ANY WARRANTY; without even the implied warranty of Chris@1: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Chris@1: * Lesser General Public License for more details. Chris@1: * Chris@1: * You should have received a copy of the GNU Lesser General Public Chris@1: * License along with this library; if not, write to the Free Software Chris@1: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Chris@1: */ Chris@1: Chris@1: /* Chris@1: * This wraps the replaygain_analysis lib, which is LGPL. This wrapper Chris@1: * allows analysis of different input resolutions by automatically Chris@1: * scaling the input signal Chris@1: */ Chris@1: Chris@1: /* This .h cannot be included by itself; #include "share/grabbag.h" instead. */ Chris@1: Chris@1: #ifndef GRABBAG__REPLAYGAIN_H Chris@1: #define GRABBAG__REPLAYGAIN_H Chris@1: Chris@1: #include "FLAC/metadata.h" Chris@1: Chris@1: #ifdef __cplusplus Chris@1: extern "C" { Chris@1: #endif Chris@1: Chris@1: extern const unsigned GRABBAG__REPLAYGAIN_MAX_TAG_SPACE_REQUIRED; Chris@1: Chris@1: extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_REFERENCE_LOUDNESS; /* = "REPLAYGAIN_REFERENCE_LOUDNESS" */ Chris@1: extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_TITLE_GAIN; /* = "REPLAYGAIN_TRACK_GAIN" */ Chris@1: extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_TITLE_PEAK; /* = "REPLAYGAIN_TRACK_PEAK" */ Chris@1: extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_ALBUM_GAIN; /* = "REPLAYGAIN_ALBUM_GAIN" */ Chris@1: extern const FLAC__byte * const GRABBAG__REPLAYGAIN_TAG_ALBUM_PEAK; /* = "REPLAYGAIN_ALBUM_PEAK" */ Chris@1: Chris@1: FLAC__bool grabbag__replaygain_is_valid_sample_frequency(unsigned sample_frequency); Chris@1: Chris@1: FLAC__bool grabbag__replaygain_init(unsigned sample_frequency); Chris@1: Chris@1: /* 'bps' must be valid for FLAC, i.e. >=4 and <= 32 */ Chris@1: FLAC__bool grabbag__replaygain_analyze(const FLAC__int32 * const input[], FLAC__bool is_stereo, unsigned bps, unsigned samples); Chris@1: Chris@1: void grabbag__replaygain_get_album(float *gain, float *peak); Chris@1: void grabbag__replaygain_get_title(float *gain, float *peak); Chris@1: Chris@1: /* These three functions return an error string on error, or NULL if successful */ Chris@1: const char *grabbag__replaygain_analyze_file(const char *filename, float *title_gain, float *title_peak); Chris@1: const char *grabbag__replaygain_store_to_vorbiscomment(FLAC__StreamMetadata *block, float album_gain, float album_peak, float title_gain, float title_peak); Chris@1: const char *grabbag__replaygain_store_to_vorbiscomment_reference(FLAC__StreamMetadata *block); Chris@1: const char *grabbag__replaygain_store_to_vorbiscomment_album(FLAC__StreamMetadata *block, float album_gain, float album_peak); Chris@1: const char *grabbag__replaygain_store_to_vorbiscomment_title(FLAC__StreamMetadata *block, float title_gain, float title_peak); Chris@1: const char *grabbag__replaygain_store_to_file(const char *filename, float album_gain, float album_peak, float title_gain, float title_peak, FLAC__bool preserve_modtime); Chris@1: const char *grabbag__replaygain_store_to_file_reference(const char *filename, FLAC__bool preserve_modtime); Chris@1: const char *grabbag__replaygain_store_to_file_album(const char *filename, float album_gain, float album_peak, FLAC__bool preserve_modtime); Chris@1: const char *grabbag__replaygain_store_to_file_title(const char *filename, float title_gain, float title_peak, FLAC__bool preserve_modtime); Chris@1: Chris@1: FLAC__bool grabbag__replaygain_load_from_vorbiscomment(const FLAC__StreamMetadata *block, FLAC__bool album_mode, FLAC__bool strict, double *reference, double *gain, double *peak); Chris@1: double grabbag__replaygain_compute_scale_factor(double peak, double gain, double preamp, FLAC__bool prevent_clipping); Chris@1: Chris@1: #ifdef __cplusplus Chris@1: } Chris@1: #endif Chris@1: Chris@1: #endif