Get the currently playing frame number (if any)
| 34 | |
| 35 | // Get the currently playing frame number (if any) |
| 36 | int64_t VideoPlaybackThread::getCurrentFramePosition() |
| 37 | { |
| 38 | if (frame) |
| 39 | return frame->number; |
| 40 | else |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | // Start the thread |
| 45 | void VideoPlaybackThread::run() |
nothing calls this directly
no outgoing calls
no test coverage detected