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

Method init_effect_details

src/effects/Saturation.cpp:95–106  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

93
94// Init effect settings
95void Saturation::init_effect_details()
96{
97 /// Initialize the values of the EffectInfo struct.
98 InitEffectInfo();
99
100 /// Set the effect info
101 info.class_name = "Saturation";
102 info.name = "Color Saturation";
103 info.description = "Adjust the color saturation.";
104 info.has_audio = false;
105 info.has_video = true;
106}
107
108// This method is required for all derived classes of EffectBase, and returns a
109// modified openshot::Frame object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected