Skip to content

Commit a9295fc

Browse files
committed
driver/usbvideodriver: reduce latency of GStreamer pipeline
The playbin3 uses a urisourcebin to open and read the uri. The urisourcebin detects the fd as a stream uri and internally crates a multiqueue with a default buffer duration of 5 s and a high watermark of 0.60 to buffer the stream. This adds 3 s latency to the video stream. If the source signals that is it a live source, the urisourcebin would avoid buffering of the stream. Unfortunately, the fdsrc doesn't signal that the data is live, and doesn't have a property to change this. Use buffer-duration to set the size of the queue for buffering to 0 to avoid this additional latency. The queue could be completely removed by setting "buffering" in the flags property of playbin3 to 0, which would be equal to the behavior of a live source, but the changed flags are more difficult to understand than the buffer duration.
1 parent 8550918 commit a9295fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labgrid/driver/usbvideodriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def stream(self, caps_hint=None, controls=None):
131131
tx_cmd = self.video.command_prefix + ["gst-launch-1.0", "-q"]
132132
tx_cmd += pipeline.split()
133133
rx_cmd = ["gst-launch-1.0"]
134-
rx_cmd += "playbin3 uri=fd://0".split()
134+
rx_cmd += "playbin3 buffer-duration=0 uri=fd://0".split()
135135

136136
tx = subprocess.Popen(
137137
tx_cmd,

0 commit comments

Comments
 (0)