diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-09-29 05:25:02 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-09-29 05:25:02 +0000 |
| commit | edf8881a5c2bd6a3025443636d5b22a22893f833 (patch) | |
| tree | 7d62386a1e9ab223a758dbf01d1bf9a115114894 /src/plugins/General/rgscan | |
| parent | 87d006d2bb87ca7e7f942f268919dcae3e2c9f9d (diff) | |
| download | qmmp-edf8881a5c2bd6a3025443636d5b22a22893f833.tar.gz qmmp-edf8881a5c2bd6a3025443636d5b22a22893f833.tar.bz2 qmmp-edf8881a5c2bd6a3025443636d5b22a22893f833.zip | |
fixed function name
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5612 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/rgscan')
| -rw-r--r-- | src/plugins/General/rgscan/gain_analysis.c | 2 | ||||
| -rw-r--r-- | src/plugins/General/rgscan/gain_analysis.h | 2 | ||||
| -rw-r--r-- | src/plugins/General/rgscan/rgscanner.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
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 |
