12345678910111213141516171819202122232425 |
- #pragma once
- #include <stdlib.h>
- #include <chrono>
- namespace ffmpeg {
- class TimeKeeper {
- public:
- TimeKeeper() = default;
-
-
- long adjust(long& decoderTimestamp);
- private:
- long startTime_{0};
- long streamTimestamp_{0};
- };
- }
|