From 836045e9452d470dad1a260d6b0f8e04393ec83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Mon, 7 Jul 2025 13:09:32 +0200 Subject: [PATCH] rtprecv: fix SSRC collision event sent in wrong direction Part-of: --- net/rtp/src/rtpbin2/rtprecv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/rtp/src/rtpbin2/rtprecv.rs b/net/rtp/src/rtpbin2/rtprecv.rs index f3074aa0e..5ef4f8f45 100644 --- a/net/rtp/src/rtpbin2/rtprecv.rs +++ b/net/rtp/src/rtpbin2/rtprecv.rs @@ -824,7 +824,7 @@ impl RtpRecv { // XXX: Another option is to have us rewrite ssrc's instead of asking upstream to do // so. for ssrc in ssrc_collision { - pad.send_event( + pad.push_event( gst::event::CustomUpstream::builder( gst::Structure::builder("GstRTPCollision") .field("ssrc", ssrc)