Files
oak-editor/effects/video/cropeffect.h
T

19 lines
356 B
C++

#ifndef CROPEFFECT_H
#define CROPEFFECT_H
#include "../effect.h"
class CropEffect : public Effect
{
public:
CropEffect(Clip* c);
void process_coords(double timecode, GLTextureCoords &coords);
private:
EffectField* left_field;
EffectField* top_field;
EffectField* right_field;
EffectField* bottom_field;
};
#endif // CROPEFFECT_H