tests: fix identity handoff signal signature (*args for GStreamer 1.28 compat)

This commit is contained in:
Matteo Benedetto
2026-03-23 23:38:44 +01:00
parent 1a3549312e
commit 79a1c9a78c
+1 -1
View File
@@ -155,7 +155,7 @@ def _run_benchmark(
# fakesink path: count frames via identity handoff signal
probe = pipeline.get_by_name("probe")
if probe:
def on_handoff(elem, buf, pad):
def on_handoff(*args):
n = frame_count[0]
frame_count[0] = n + 1
if n >= WARMUP_FRAMES: