| 40 | void setLastCachedIndex(int64_t v) { last_cached_index.store(v); } |
| 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(); } |