Lines Matching full:checksums
941 @return: a list of checksums of frames captured.
960 checksums = self.get_captured_checksums()
965 total_period = (len(checksums) - frame_to_start) // self._FRAME_RATE
968 if frame_to_start >= len(checksums) or frame_to_stop >= len(checksums):
973 checksums = checksums[frame_to_start:frame_to_stop]
975 # Count the unique checksums per second, i.e. FPS
978 for i in range(0, len(checksums), self._FRAME_RATE):
982 if j == 0 or checksums[j] != checksums[j - 1]:
1012 checksums = self.get_captured_checksums()
1015 first_checksum = checksums[frame_to_start]
1017 for i in range(frame_to_start + 1, len(checksums) - pattern_window):
1020 if j == 0 or checksums[j] != checksums[j - 1]: