Init effect settings
| 39 | |
| 40 | // Init effect settings |
| 41 | void 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 |
nothing calls this directly
no outgoing calls
no test coverage detected