mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-16 08:34:10 +02:00
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Reverse.h
|
|
|
|
Mark Phillips
|
|
|
|
This class reverses the selected audio.
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_EFFECT_REVERSE__
|
|
#define __AUDACITY_EFFECT_REVERSE__
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include "Effect.h"
|
|
|
|
#define REVERSE_PLUGIN_SYMBOL IdentInterfaceSymbol{ XO("Reverse") }
|
|
|
|
class EffectReverse final : public Effect
|
|
{
|
|
public:
|
|
EffectReverse();
|
|
virtual ~EffectReverse();
|
|
|
|
// IdentInterface implementation
|
|
|
|
IdentInterfaceSymbol GetSymbol() override;
|
|
wxString GetDescription() override;
|
|
|
|
// EffectDefinitionInterface implementation
|
|
|
|
EffectType GetType() override;
|
|
bool IsInteractive() override;
|
|
|
|
// Effect implementation
|
|
|
|
bool Process() override;
|
|
|
|
private:
|
|
// EffectReverse implementation
|
|
|
|
bool ProcessOneClip(int count, WaveTrack* track,
|
|
sampleCount start, sampleCount len, sampleCount originalStart, sampleCount originalEnd);
|
|
bool ProcessOneWave(int count, WaveTrack* track, sampleCount start, sampleCount len);
|
|
};
|
|
|
|
#endif
|
|
|