mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
rist: Fix typo
This commit is contained in:
parent
7cd4064425
commit
beba12e97b
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue