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

Method init_effect_details

src/effects/Blur.cpp:35–46  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected