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

Method init_effect_details

src/effects/Pixelate.cpp:41–52  ·  view source on GitHub ↗

Init effect settings

Source from the content-addressed store, hash-verified

39
40// Init effect settings
41void Pixelate::init_effect_details()
42{
43 /// Initialize the values of the EffectInfo struct.
44 InitEffectInfo();
45
46 /// Set the effect info
47 info.class_name = "Pixelate";
48 info.name = "Pixelate";
49 info.description = "Pixelate (increase or decrease) the number of visible pixels.";
50 info.has_audio = false;
51 info.has_video = true;
52}
53
54// This method is required for all derived classes of EffectBase, and returns a
55// modified openshot::Frame object

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected