comparison src/flac/replaygain_analysis.h @ 97:a19f24790f3c trunk

[svn] It compiles now.
author chainsaw
date Sat, 21 Oct 2006 18:02:01 -0700
parents 3da1b8942b8b
children
comparison
equal deleted inserted replaced
96:63bde7ca7ad0 97:a19f24790f3c
41 #ifdef __cplusplus 41 #ifdef __cplusplus
42 extern "C" { 42 extern "C" {
43 #endif 43 #endif
44 44
45 typedef float Float_t; /* Type used for filtering */ 45 typedef float Float_t; /* Type used for filtering */
46 extern Float_t ReplayGainReferenceLoudness; /* in dB SPL, currently == 89.0 */
46 47
47 int InitGainAnalysis ( long samplefreq ); 48 int InitGainAnalysis ( long samplefreq );
48 int AnalyzeSamples ( const Float_t* left_samples, const Float_t* right_samples, size_t num_samples, int num_channels ); 49 int AnalyzeSamples ( const Float_t* left_samples, const Float_t* right_samples, size_t num_samples, int num_channels );
49 int ResetSampleFrequency ( long samplefreq ); 50 int ResetSampleFrequency ( long samplefreq );
50 Float_t GetTitleGain ( void ); 51 Float_t GetTitleGain ( void );