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

Method init_effect_details

src/effects/Hue.cpp:32–43  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected