mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
fix "extern"ness of ReplayGainReferenceLoudness
This commit is contained in:
@@ -44,7 +44,7 @@ extern "C" {
|
|||||||
|
|
||||||
typedef float Float_t; /* Type used for filtering */
|
typedef float Float_t; /* Type used for filtering */
|
||||||
|
|
||||||
Float_t ReplayGainReferenceLoudness; /* in dB SPL, currently == 89.0 */
|
extern Float_t ReplayGainReferenceLoudness; /* in dB SPL, currently == 89.0 */
|
||||||
|
|
||||||
int InitGainAnalysis ( long samplefreq );
|
int InitGainAnalysis ( long samplefreq );
|
||||||
int AnalyzeSamples ( const Float_t* left_samples, const Float_t* right_samples, size_t num_samples, int num_channels );
|
int AnalyzeSamples ( const Float_t* left_samples, const Float_t* right_samples, size_t num_samples, int num_channels );
|
||||||
|
|||||||
@@ -100,7 +100,7 @@
|
|||||||
|
|
||||||
#include "replaygain_analysis.h"
|
#include "replaygain_analysis.h"
|
||||||
|
|
||||||
extern Float_t ReplayGainReferenceLoudness = 89.0; /* in dB SPL */
|
Float_t ReplayGainReferenceLoudness = 89.0; /* in dB SPL */
|
||||||
|
|
||||||
typedef unsigned short Uint16_t;
|
typedef unsigned short Uint16_t;
|
||||||
typedef signed short Int16_t;
|
typedef signed short Int16_t;
|
||||||
|
|||||||
Reference in New Issue
Block a user