| 41 | void setPlayhead(int64_t v) { requested_display_frame.store(v); } |
| 42 | void setMinFramesAhead(int64_t v) { min_frames_ahead.store(v); } |
| 43 | void setLastDir(int d) { last_dir.store(d); } |
| 44 | void forceUserSeekFlag() { userSeeked.store(true); } |
| 45 | bool isScrubbing() const { return scrub_active.load(); } |
| 46 | bool getUserSeekedFlag() const { return userSeeked.load(); } |