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

Method init_effect_details

src/audio_effects/Expander.cpp:32–48  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

30
31// Init effect settings
32void Expander::init_effect_details()
33{
34 /// Initialize the values of the EffectInfo struct.
35 InitEffectInfo();
36
37 /// Set the effect info
38 info.class_name = "Expander";
39 info.name = "Expander";
40 info.description = "Louder parts of audio becomes relatively louder and quieter parts becomes quieter.";
41 info.has_audio = true;
42 info.has_video = false;
43
44 input_level = 0.0f;
45 yl_prev = 0.0f;
46
47
48}
49
50// This method is required for all derived classes of EffectBase, and returns a
51// modified openshot::Frame object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected