Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions bindings/java/openshot.i
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ typedef struct OpenShotByteBuffer {
%include "QtPlayer.h"
%include "QtTextReader.h"
%include "KeyFrame.h"
%include "AnimatedCurve.h"
%include "RendererBase.h"
%include "Settings.h"
%include "TimelineBase.h"
Expand Down Expand Up @@ -256,6 +257,7 @@ typedef struct OpenShotByteBuffer {
%include "effects/Sharpen.h"
%include "effects/Shift.h"
%include "effects/SphericalProjection.cpp"
%include "effects/DenoiseImage.h"
%include "effects/Wave.h"
#ifdef USE_OPENCV
%include "effects/Stabilizer.h"
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/openshot.i
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ static int openshot_swig_is_qwidget(PyObject *obj) {
%include "QtPlayer.h"
%include "QtTextReader.h"
%include "KeyFrame.h"
%include "AnimatedCurve.h"
%include "RendererBase.h"
%include "Settings.h"
%include "TimelineBase.h"
Expand Down Expand Up @@ -544,6 +545,7 @@ static int openshot_swig_is_qwidget(PyObject *obj) {
%include "effects/Sharpen.h"
%include "effects/Shift.h"
%include "effects/SphericalProjection.cpp"
%include "effects/DenoiseImage.h"
%include "effects/Wave.h"
#ifdef USE_OPENCV
%include "effects/Stabilizer.h"
Expand Down
3 changes: 2 additions & 1 deletion bindings/ruby/openshot.i
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ typedef struct OpenShotByteBuffer {
%include "QtPlayer.h"
%include "QtTextReader.h"
%include "KeyFrame.h"
%include "AnimatedCurve.h"
%include "RendererBase.h"
%include "Settings.h"
%include "TimelineBase.h"
Expand Down Expand Up @@ -281,5 +282,5 @@ typedef struct OpenShotByteBuffer {
%include "effects/Pixelate.h"
%include "effects/Saturation.h"
%include "effects/Shift.h"
%include "effects/DenoiseImage.h"
%include "effects/Wave.h"

1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ set(EFFECTS_SOURCES
effects/Shadow.cpp
effects/Shift.cpp
effects/SphericalProjection.cpp
effects/DenoiseImage.cpp
effects/Wave.cpp
audio_effects/STFT.cpp
audio_effects/Noise.cpp
Expand Down
4 changes: 4 additions & 0 deletions src/EffectInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ EffectBase* EffectInfo::CreateEffect(std::string effect_type) {
else if (effect_type == "SphericalProjection")
return new SphericalProjection();

else if (effect_type == "DenoiseImage")
return new DenoiseImage();

else if (effect_type == "Wave")
return new Wave();

Expand Down Expand Up @@ -184,6 +187,7 @@ Json::Value EffectInfo::JsonValue() {
root.append(Shadow().JsonInfo());
root.append(Shift().JsonInfo());
root.append(SphericalProjection().JsonInfo());
root.append(DenoiseImage().JsonInfo());
root.append(Wave().JsonInfo());
/* Audio */
root.append(Noise().JsonInfo());
Expand Down
1 change: 1 addition & 0 deletions src/Effects.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "effects/Shadow.h"
#include "effects/SphericalProjection.h"
#include "effects/Shift.h"
#include "effects/DenoiseImage.h"
#include "effects/Wave.h"

/* Audio Effects */
Expand Down
Loading
Loading