Get the current frame object (which is filling the buffer)
| 231 | |
| 232 | // Get the current frame object (which is filling the buffer) |
| 233 | std::shared_ptr<openshot::Frame> AudioPlaybackThread::getFrame() |
| 234 | { |
| 235 | if (source) return source->getFrame(); |
| 236 | return std::shared_ptr<openshot::Frame>(); |
| 237 | } |
| 238 | |
| 239 | // Seek the audio thread |
| 240 | void AudioPlaybackThread::Seek(int64_t new_position) |
nothing calls this directly
no outgoing calls
no test coverage detected