diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2018-03-15 17:32:24 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2018-03-16 10:37:24 +0200 |
commit | b1ca76377fa2b1a427d07497c5b35c55f5a4a933 (patch) | |
tree | 6068835d6b1a53d8b7c2b4c27dee3896fb70a48f /gst-libs | |
parent | 950ead921542c8c0e16b233f91120357ff53596f (diff) |
webrtc: Remove unused parameter from rtpsender constructor
https://bugzilla.gnome.org/show_bug.cgi?id=794363
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/webrtc/rtpsender.c | 2 | ||||
-rw-r--r-- | gst-libs/gst/webrtc/rtpsender.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/webrtc/rtpsender.c b/gst-libs/gst/webrtc/rtpsender.c index 4dc6deca6..da743f32d 100644 --- a/gst-libs/gst/webrtc/rtpsender.c +++ b/gst-libs/gst/webrtc/rtpsender.c @@ -139,7 +139,7 @@ gst_webrtc_rtp_sender_init (GstWebRTCRTPSender * webrtc) } GstWebRTCRTPSender * -gst_webrtc_rtp_sender_new (GArray * send_encodings /* FIXME */ ) +gst_webrtc_rtp_sender_new (void) { return g_object_new (GST_TYPE_WEBRTC_RTP_SENDER, NULL); } diff --git a/gst-libs/gst/webrtc/rtpsender.h b/gst-libs/gst/webrtc/rtpsender.h index 40f7eae7d..f1af0900b 100644 --- a/gst-libs/gst/webrtc/rtpsender.h +++ b/gst-libs/gst/webrtc/rtpsender.h @@ -56,7 +56,7 @@ struct _GstWebRTCRTPSenderClass }; GST_WEBRTC_API -GstWebRTCRTPSender * gst_webrtc_rtp_sender_new (GArray * send_encodings); +GstWebRTCRTPSender * gst_webrtc_rtp_sender_new (void); GST_WEBRTC_API void gst_webrtc_rtp_sender_set_transport (GstWebRTCRTPSender * sender, |