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