From: Sebastian Dröge Date: Thu, 23 Feb 2023 09:18:44 +0000 (+0200) Subject: rtspsrc: Use the correct vfunc for the `push-backchannel-sample` action signal X-Git-Tag: 1.22.7~457 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ce43c8014c540da9b34cb21696a989ce461e7f0;p=platform%2Fupstream%2Fgstreamer.git rtspsrc: Use the correct vfunc for the `push-backchannel-sample` action signal Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/446 Part-of: --- diff --git a/subprojects/gst-plugins-good/gst/rtsp/gstrtspsrc.c b/subprojects/gst-plugins-good/gst/rtsp/gstrtspsrc.c index 332ef18..81024d2 100644 --- a/subprojects/gst-plugins-good/gst/rtsp/gstrtspsrc.c +++ b/subprojects/gst-plugins-good/gst/rtsp/gstrtspsrc.c @@ -1256,7 +1256,7 @@ gst_rtspsrc_class_init (GstRTSPSrcClass * klass) gst_rtspsrc_signals[SIGNAL_PUSH_BACKCHANNEL_SAMPLE] = g_signal_new ("push-backchannel-sample", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION | G_SIGNAL_DEPRECATED, - G_STRUCT_OFFSET (GstRTSPSrcClass, push_backchannel_buffer), NULL, NULL, + G_STRUCT_OFFSET (GstRTSPSrcClass, push_backchannel_sample), NULL, NULL, NULL, GST_TYPE_FLOW_RETURN, 2, G_TYPE_UINT, GST_TYPE_SAMPLE); /**