rist: Fix typo

This commit is contained in:
Olivier Crête 2019-05-17 17:15:13 -04:00
parent 7cd4064425
commit beba12e97b
2 changed files with 2 additions and 2 deletions

View file

@ -294,7 +294,7 @@ gst_rist_sink_init (GstRistSink * sink)
*
* * To select RIST compatible SSRC
*/
sink->rtpbin = gst_element_factory_make ("rtpbin", "rist_send_rtbpin");
sink->rtpbin = gst_element_factory_make ("rtpbin", "rist_send_rtpbin");
if (!sink->rtpbin) {
sink->missing_plugin = "rtpmanager";
goto missing_plugin;

View file

@ -316,7 +316,7 @@ gst_rist_src_init (GstRistSrc * src)
gst_static_pad_template_get (&src_templ));
gst_element_add_pad (GST_ELEMENT (src), src->srcpad);
src->rtpbin = gst_element_factory_make ("rtpbin", "rist_recv_rtbpin");
src->rtpbin = gst_element_factory_make ("rtpbin", "rist_recv_rtpbin");
if (!src->rtpbin) {
src->missing_plugin = "rtpmanager";
goto missing_plugin;