Skip to content

Commit

Permalink
Merge pull request #1336 from KarlK90/fix/h264-software-decoding
Browse files Browse the repository at this point in the history
driver/usbvideodriver: use playbin3 element
  • Loading branch information
jluebbe authored Mar 6, 2024
2 parents f432076 + 65998f6 commit 510b70b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/driver/usbvideodriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def stream(self, caps_hint=None, controls=None):
tx_cmd = self.video.command_prefix + ["gst-launch-1.0", "-q"]
tx_cmd += pipeline.split()
rx_cmd = ["gst-launch-1.0"]
rx_cmd += "playbin uri=fd://0".split()
rx_cmd += "playbin3 uri=fd://0".split()

tx = subprocess.Popen(
tx_cmd,
Expand Down

0 comments on commit 510b70b

Please sign in to comment.