From cc06156bca9e9d6d6c34458676e763feccf3d411 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Mon, 11 Apr 2022 16:05:48 +0200 Subject: Removing -1 pts value as it is useless now. --- src/argaze/TobiiGlassesPro2/TobiiVideo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/argaze/TobiiGlassesPro2/TobiiVideo.py b/src/argaze/TobiiGlassesPro2/TobiiVideo.py index daa562e..4d684ec 100644 --- a/src/argaze/TobiiGlassesPro2/TobiiVideo.py +++ b/src/argaze/TobiiGlassesPro2/TobiiVideo.py @@ -167,7 +167,7 @@ class TobiiVideoStream(threading.Thread): # if the video acquisition thread have been stopped or isn't started if self.__stop_event.isSet() or self.__frame_tuple == None: - return -1, TobiiVideoFrame(numpy.zeros((1, 1, 3), numpy.uint8), 1, 1, -1) + return -1, TobiiVideoFrame(numpy.zeros((1, 1, 3), numpy.uint8), 1, 1) # lock frame access self.__read_lock.acquire() -- cgit v1.1