16 lines
348 B
C++
16 lines
348 B
C++
#ifndef PANEFFECT_H
|
|
#define PANEFFECT_H
|
|
|
|
#include "project/effect.h"
|
|
|
|
class PanEffect : public Effect {
|
|
Q_OBJECT
|
|
public:
|
|
PanEffect(Clip* c, const EffectMeta* em);
|
|
void process_audio(double timecode_start, double timecode_end, quint8* samples, int nb_bytes, int channel_count);
|
|
|
|
EffectField* pan_val;
|
|
};
|
|
|
|
#endif // PANEFFECT_H
|