Close reader
| 139 | |
| 140 | // Close reader |
| 141 | void TextReader::Close() |
| 142 | { |
| 143 | // Close all objects, if reader is 'open' |
| 144 | if (is_open) |
| 145 | { |
| 146 | // Mark as "closed" |
| 147 | is_open = false; |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // Get an openshot::Frame object for a specific frame number of this reader. |
| 152 | std::shared_ptr<Frame> TextReader::GetFrame(int64_t requested_frame) |
nothing calls this directly
no outgoing calls
no test coverage detected