From bbc629da21b9e4bad31e554917fd8699913c457a Mon Sep 17 00:00:00 2001 From: Muthumula Sai Harshith Reddy Date: Thu, 6 Aug 2026 13:52:51 +0530 Subject: [PATCH] object-detection.py: change sync for wayland display from false to true change sync for wayland display from false to true Signed-off-by: Muthumula Sai Harshith Reddy --- qualcomm-linux/applications/LiteRT/object_detection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qualcomm-linux/applications/LiteRT/object_detection.py b/qualcomm-linux/applications/LiteRT/object_detection.py index 4cdaa13..00537f1 100644 --- a/qualcomm-linux/applications/LiteRT/object_detection.py +++ b/qualcomm-linux/applications/LiteRT/object_detection.py @@ -58,7 +58,7 @@ else: Gst.init(None) pipeline = Gst.parse_launch( - 'appsrc name=src is-live=true block=true format=time caps=video/x-raw,format=BGR,width=1080,height=720,framerate=30/1 ! videoconvert ! waylandsink sync=false' + 'appsrc name=src is-live=true block=true format=time caps=video/x-raw,format=BGR,width=1080,height=720,framerate=30/1 ! videoconvert ! waylandsink sync=true' ) appsrc = pipeline.get_by_name('src') pipeline.set_state(Gst.State.PLAYING)