Init effect settings
| 31 | |
| 32 | // Init effect settings |
| 33 | void Wave::init_effect_details() |
| 34 | { |
| 35 | /// Initialize the values of the EffectInfo struct. |
| 36 | InitEffectInfo(); |
| 37 | |
| 38 | /// Set the effect info |
| 39 | info.class_name = "Wave"; |
| 40 | info.name = "Wave"; |
| 41 | info.description = "Distort the frame's image into a wave pattern."; |
| 42 | info.has_audio = false; |
| 43 | info.has_video = true; |
| 44 | |
| 45 | } |
| 46 | |
| 47 | // This method is required for all derived classes of EffectBase, and returns a |
| 48 | // modified openshot::Frame object |
nothing calls this directly
no outgoing calls
no test coverage detected