From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/nu/VideoClock.h | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 Src/nu/VideoClock.h (limited to 'Src/nu/VideoClock.h') diff --git a/Src/nu/VideoClock.h b/Src/nu/VideoClock.h new file mode 100644 index 00000000..0ff82cf0 --- /dev/null +++ b/Src/nu/VideoClock.h @@ -0,0 +1,63 @@ +#pragma once +#include + +namespace nu +{ +class VideoClock +{ +public: + VideoClock() + { + video_sync_start_time=0; + pause_start_time=0; + length_paused=0; + paused=0; + } + + void Reset() + { + length_paused = 0; + paused=0; + } + + void Pause() + { + paused=1; + pause_start_time = GetTickCount(); + } + + void Unpause() + { + paused=0; + length_paused += (GetTickCount() - pause_start_time); + } + + int GetOutputTime() + { + if (paused) + { + return pause_start_time - video_sync_start_time - length_paused; + } + else + { + return GetTickCount() - video_sync_start_time - length_paused; + } + } + + void Seek(int time_ms) + { + video_sync_start_time = GetTickCount() - time_ms; + length_paused = 0; + } + + void Start() + { + video_sync_start_time = GetTickCount(); + } +private: + DWORD video_sync_start_time; + DWORD pause_start_time; + DWORD length_paused; + int paused; +}; +} \ No newline at end of file -- cgit