15 lines
268 B
C++
15 lines
268 B
C++
#ifndef VOLUMEEFFECT_H
|
|
#define VOLUMEEFFECT_H
|
|
|
|
#include "../effect.h"
|
|
|
|
class VolumeEffect : public Effect {
|
|
public:
|
|
VolumeEffect(Clip* c);
|
|
void process_audio(quint8* samples, int nb_bytes);
|
|
|
|
EffectField* volume_val;
|
|
};
|
|
|
|
#endif // VOLUMEEFFECT_H
|