| 44 | } |
| 45 | |
| 46 | void create_python_module_from_string( |
| 47 | std::string module_name, std::string option, |
| 48 | std::shared_ptr<PythonModule> &python_module) { |
| 49 | std::istringstream s; |
| 50 | nlohmann::json opt; |
| 51 | s.str(option); |
| 52 | s >> opt; |
| 53 | python_module = std::make_shared<PythonModule>(module_name, module_name, 0, |
| 54 | JsonParam(opt)); |
| 55 | } |
| 56 | |
| 57 | TEST(python_module, ffmpeg_module) { |
| 58 |
no test coverage detected