Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorJulian Bouzas <julian.bouzas@collabora.com>2020-08-13 22:27:25 +0300
committerJulian Bouzas <julian.bouzas@collabora.com>2020-08-13 22:27:25 +0300
commit91972c91aa56763cdcfa7b70a49960b4f2c22e9b (patch)
tree5f47e599d9d8f79260702d623a7f7ca287997263 /gst
parente4ce9887cd90c993e75858a32c247643ff74b5b8 (diff)
rtp: Do not register rtpreddec and rtpredenc twice
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/699>
Diffstat (limited to 'gst')
-rw-r--r--gst/rtp/gstrtp.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index b0ab05527..b2a6706e1 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -117,8 +117,6 @@
#include "gstrtpreddec.h"
#include "gstrtpulpfecdec.h"
#include "gstrtpulpfecenc.h"
-#include "gstrtpreddec.h"
-#include "gstrtpredenc.h"
#include "gstrtpstorage.h"
static gboolean
@@ -411,14 +409,6 @@ plugin_init (GstPlugin * plugin)
GST_TYPE_RTP_ULPFEC_ENC))
return FALSE;
- if (!gst_element_register (plugin, "rtpreddec", GST_RANK_NONE,
- GST_TYPE_RTP_RED_DEC))
- return FALSE;
-
- if (!gst_element_register (plugin, "rtpredenc", GST_RANK_NONE,
- GST_TYPE_RTP_RED_ENC))
- return FALSE;
-
if (!gst_element_register (plugin, "rtpstorage", GST_RANK_NONE,
GST_TYPE_RTP_STORAGE))
return FALSE;