Blank constructor, useful when using Json to load the effect properties
| 27 | |
| 28 | /// Blank constructor, useful when using Json to load the effect properties |
| 29 | Stabilizer::Stabilizer(std::string clipStabilizedDataPath):protobuf_data_path(clipStabilizedDataPath) |
| 30 | { |
| 31 | // Init effect properties |
| 32 | init_effect_details(); |
| 33 | // Tries to load the stabilization data from protobuf |
| 34 | LoadStabilizedData(clipStabilizedDataPath); |
| 35 | } |
| 36 | |
| 37 | // Default constructor |
| 38 | Stabilizer::Stabilizer() |
nothing calls this directly
no outgoing calls
no test coverage detected