| 25 | using namespace openshot; |
| 26 | |
| 27 | ImageWriter::ImageWriter(std::string path) : |
| 28 | path(path), cache_size(8), write_video_count(0), image_quality(75), number_of_loops(1), |
| 29 | combine_frames(true), is_open(false) |
| 30 | { |
| 31 | info.has_audio = false; |
| 32 | info.has_video = true; |
| 33 | } |
| 34 | |
| 35 | // Set video export options |
| 36 | void ImageWriter::SetVideoOptions( |
nothing calls this directly
no outgoing calls
no test coverage detected