Olive
paneffect.h
1 #ifndef PANEFFECT_H
2 #define PANEFFECT_H
3 
4 #include "project/effect.h"
5 
6 class PanEffect : public Effect {
7  Q_OBJECT
8 public:
9  PanEffect(Clip* c, const EffectMeta* em);
10  void process_audio(double timecode_start, double timecode_end, quint8* samples, int nb_bytes, int channel_count);
11 
12  EffectField* pan_val;
13 };
14 
15 #endif // PANEFFECT_H
Definition: paneffect.h:6
Definition: effect.h:146
Definition: effect.h:27
Definition: clip.h:33
Definition: effectfield.h:23