13 lines
388 B
C++
13 lines
388 B
C++
#ifndef LOGARITHMICFADETRANSITION_H
|
|
#define LOGARITHMICFADETRANSITION_H
|
|
|
|
#include "project/effect.h"
|
|
|
|
class LogarithmicFadeTransition : public Effect {
|
|
public:
|
|
LogarithmicFadeTransition(Clip* c, const EffectMeta* em);
|
|
void process_audio(double timecode_start, double timecode_end, quint8* samples, int nb_bytes, int channel_count);
|
|
};
|
|
|
|
#endif // LOGARITHMICFADETRANSITION_H
|