1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 07:59:27 +02:00
audacity/src/effects/Normalize.h
2016-09-18 10:36:53 -04:00

97 lines
2.1 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
Normalize.h
Dominic Mazzoni
Vaughan Johnson (Preview)
**********************************************************************/
#ifndef __AUDACITY_EFFECT_NORMALIZE__
#define __AUDACITY_EFFECT_NORMALIZE__
#include <wx/checkbox.h>
#include <wx/event.h>
#include <wx/stattext.h>
#include <wx/string.h>
#include <wx/textctrl.h>
#include "Effect.h"
class ShuttleGui;
#define NORMALIZE_PLUGIN_SYMBOL XO("Normalize")
class EffectNormalize final : public Effect
{
public:
EffectNormalize();
virtual ~EffectNormalize();
// IdentInterface implementation
wxString GetSymbol() override;
wxString GetDescription() override;
// EffectIdentInterface implementation
EffectType GetType() override;
// EffectClientInterface implementation
bool GetAutomationParameters(EffectAutomationParameters & parms) override;
bool SetAutomationParameters(EffectAutomationParameters & parms) override;
// Effect implementation
bool CheckWhetherSkipEffect() override;
bool Startup() override;
bool Process() override;
void PopulateOrExchange(ShuttleGui & S) override;
bool TransferDataToWindow() override;
bool TransferDataFromWindow() override;
private:
// EffectNormalize implementation
bool ProcessOne(WaveTrack * t, const wxString &msg);
void AnalyseTrack(WaveTrack * track, const wxString &msg);
void AnalyzeData(float *buffer, size_t len);
bool AnalyseDC(WaveTrack * track, const wxString &msg);
void ProcessData(float *buffer, size_t len);
void OnUpdateUI(wxCommandEvent & evt);
void UpdateUI();
private:
double mLevel;
bool mGain;
bool mDC;
bool mStereoInd;
int mCurTrackNum;
double mCurT0;
double mCurT1;
float mMult;
float mOffset;
float mMin;
float mMax;
double mSum;
sampleCount mCount;
wxCheckBox *mGainCheckBox;
wxCheckBox *mDCCheckBox;
wxTextCtrl *mLevelTextCtrl;
wxStaticText *mLeveldB;
wxStaticText *mWarning;
wxCheckBox *mStereoIndCheckBox;
bool mCreating;
DECLARE_EVENT_TABLE()
};
#endif