MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / init_effect_details

Method init_effect_details

src/effects/Wave.cpp:33–45  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

31
32// Init effect settings
33void Wave::init_effect_details()
34{
35 /// Initialize the values of the EffectInfo struct.
36 InitEffectInfo();
37
38 /// Set the effect info
39 info.class_name = "Wave";
40 info.name = "Wave";
41 info.description = "Distort the frame's image into a wave pattern.";
42 info.has_audio = false;
43 info.has_video = true;
44
45}
46
47// This method is required for all derived classes of EffectBase, and returns a
48// modified openshot::Frame object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected