Close image file
| 91 | |
| 92 | // Close image file |
| 93 | void DummyReader::Close() |
| 94 | { |
| 95 | // Close all objects, if reader is 'open' |
| 96 | if (is_open) |
| 97 | { |
| 98 | // Mark as "closed" |
| 99 | is_open = false; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | // Get an openshot::Frame object for a specific frame number of this reader. It is either a blank frame |
| 104 | // or a custom frame added with passing a Cache object to the constructor. |
nothing calls this directly
no outgoing calls
no test coverage detected