Reset the clock (for reconnection scenarios).
(self)
| 452 | self._audio_sample_count = 0 |
| 453 | |
| 454 | def reset(self): |
| 455 | """Reset the clock (for reconnection scenarios).""" |
| 456 | with self._lock: |
| 457 | self._epoch = time.perf_counter() |
| 458 | self._epoch_ntp = time.time() |
| 459 | self._video_frame_count = 0 |
| 460 | self._audio_sample_count = 0 |
| 461 | |
| 462 | @property |
| 463 | def is_started(self) -> bool: |
no outgoing calls
no test coverage detected