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

Method init_effect_details

src/audio_effects/Distortion.cpp:31–42  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

29
30// Init effect settings
31void Distortion::init_effect_details()
32{
33 /// Initialize the values of the EffectInfo struct.
34 InitEffectInfo();
35
36 /// Set the effect info
37 info.class_name = "Distortion";
38 info.name = "Distortion";
39 info.description = "Alter the audio by clipping the signal.";
40 info.has_audio = true;
41 info.has_video = false;
42}
43
44
45// This method is required for all derived classes of EffectBase, and returns a

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected