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