Init effect settings
| 93 | |
| 94 | // Init effect settings |
| 95 | void 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 |
nothing calls this directly
no outgoing calls
no test coverage detected