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