replaygain.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* grabbag - Convenience lib for various routines common to several tools
  2.  * Copyright (C) 2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. /*
  19.  * This wraps the replaygain_analysis lib, which is LGPL.  This wrapper
  20.  * allows analysis of different input resolutions by automatically
  21.  * scaling the input signal
  22.  */
  23. /* This .h cannot be included by itself; #include "share/grabbag.h" instead. */
  24. #ifndef GRABBAG__REPLAYGAIN_H
  25. #define GRABBAG__REPLAYGAIN_H
  26. #include "FLAC/metadata.h"
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. extern const unsigned GRABBAG__REPLAYGAIN_MAX_TAG_SPACE_REQUIRED;
  31. FLAC__bool grabbag__replaygain_is_valid_sample_frequency(unsigned sample_frequency);
  32. FLAC__bool grabbag__replaygain_init(unsigned sample_frequency);
  33. /* 'bps' must be valid for FLAC, i.e. >=4 and <= 32 */
  34. FLAC__bool grabbag__replaygain_analyze(const FLAC__int32 * const input[], FLAC__bool is_stereo, unsigned bps, unsigned samples);
  35. void grabbag__replaygain_get_album(float *gain, float *peak);
  36. void grabbag__replaygain_get_title(float *gain, float *peak);
  37. /* These three functions return an error string on error, or NULL if successful */
  38. const char *grabbag__replaygain_analyze_file(const char *filename, float *title_gain, float *title_peak);
  39. const char *grabbag__replaygain_store_to_vorbiscomment(FLAC__StreamMetadata *block, float album_gain, float album_peak, float title_gain, float title_peak);
  40. const char *grabbag__replaygain_store_to_vorbiscomment_album(FLAC__StreamMetadata *block, float album_gain, float album_peak);
  41. const char *grabbag__replaygain_store_to_vorbiscomment_title(FLAC__StreamMetadata *block, float title_gain, float title_peak);
  42. 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);
  43. const char *grabbag__replaygain_store_to_file_album(const char *filename, float album_gain, float album_peak, FLAC__bool preserve_modtime);
  44. const char *grabbag__replaygain_store_to_file_title(const char *filename, float title_gain, float title_peak, FLAC__bool preserve_modtime);
  45. FLAC__bool grabbag__replaygain_load_from_vorbiscomment(const FLAC__StreamMetadata *block, FLAC__bool album_mode, double *gain, double *peak);
  46. double grabbag__replaygain_compute_scale_factor(double peak, double gain, double preamp, FLAC__bool prevent_clipping);
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50. #endif