Init effect settings
| 33 | |
| 34 | // Init effect settings |
| 35 | void 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 |
nothing calls this directly
no outgoing calls
no test coverage detected