From edf8881a5c2bd6a3025443636d5b22a22893f833 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 29 Sep 2015 05:25:02 +0000 Subject: fixed function name git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5612 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/rgscan/gain_analysis.c | 2 +- src/plugins/General/rgscan/gain_analysis.h | 2 +- src/plugins/General/rgscan/rgscanner.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/plugins/General/rgscan/gain_analysis.c b/src/plugins/General/rgscan/gain_analysis.c index b52f613b4..692c76932 100644 --- a/src/plugins/General/rgscan/gain_analysis.c +++ b/src/plugins/General/rgscan/gain_analysis.c @@ -525,7 +525,7 @@ Float_t GetAlbumGain(GainHandle_t **handle, int count) return analyzeResult(B, sizeof(B)/sizeof(*B)); } -void DeinitGainAbalysis(GainHandle_t *handle) +void DeinitGainAnalysis(GainHandle_t *handle) { free(handle); } diff --git a/src/plugins/General/rgscan/gain_analysis.h b/src/plugins/General/rgscan/gain_analysis.h index d72e535a9..f66cfe766 100644 --- a/src/plugins/General/rgscan/gain_analysis.h +++ b/src/plugins/General/rgscan/gain_analysis.h @@ -57,7 +57,7 @@ int AnalyzeSamples (GainHandle_t *handle, const Float_t* left_samples, const Flo int ResetSampleFrequency (GainHandle_t *handle, long samplefreq); Float_t GetTitleGain(GainHandle_t *handle); Float_t GetAlbumGain(GainHandle_t **handle, int count); -void DeinitGainAbalysis(GainHandle_t *handle); +void DeinitGainAnalysis(GainHandle_t *handle); #ifdef __cplusplus } diff --git a/src/plugins/General/rgscan/rgscanner.cpp b/src/plugins/General/rgscan/rgscanner.cpp index 9aafbc0cf..4a65e78e8 100644 --- a/src/plugins/General/rgscan/rgscanner.cpp +++ b/src/plugins/General/rgscan/rgscanner.cpp @@ -43,7 +43,7 @@ RGScanner::~RGScanner() deinit(); if(m_handle) { - DeinitGainAbalysis(m_handle); + DeinitGainAnalysis(m_handle); m_handle = 0; } } @@ -186,7 +186,7 @@ void RGScanner::run() double max = 0; if(m_handle) - DeinitGainAbalysis(m_handle); + DeinitGainAnalysis(m_handle); InitGainAnalysis(&m_handle, ap.sampleRate()); forever -- cgit v1.2.3-13-gbd6f