summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.com>2015-08-06 17:46:13 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-08-07 10:15:05 +0200
commit2e590a32eb88da2e200e6180747de76ccbd7797c (patch)
treed05d97775283e196c960cf35658f4a704f672fa2 /gst
parentdac431ef3fee58870db21005b89650b892524cdd (diff)
rtpklv(de)pay: add "RTP" in the klass string
GstRTSPMedia uses this classification to detect the real payloader inside a dynpay bin and asserts if it doesn't find it, therefore it is required https://bugzilla.gnome.org/show_bug.cgi?id=753325
Diffstat (limited to 'gst')
-rw-r--r--gst/rtp/gstrtpklvdepay.c2
-rw-r--r--gst/rtp/gstrtpklvpay.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtp/gstrtpklvdepay.c b/gst/rtp/gstrtpklvdepay.c
index c7c5634e4..583356bd6 100644
--- a/gst/rtp/gstrtpklvdepay.c
+++ b/gst/rtp/gstrtpklvdepay.c
@@ -91,7 +91,7 @@ gst_rtp_klv_depay_class_init (GstRtpKlvDepayClass * klass)
gst_static_pad_template_get (&sink_template));
gst_element_class_set_static_metadata (element_class,
- "RTP KLV Depayloader", "Codec/Depayloader/Network",
+ "RTP KLV Depayloader", "Codec/Depayloader/Network/RTP",
"Extracts KLV (SMPTE ST 336) metadata from RTP packets",
"Tim-Philipp Müller <tim@centricular.com>");
diff --git a/gst/rtp/gstrtpklvpay.c b/gst/rtp/gstrtpklvpay.c
index 006cd3ed9..3f9ac8882 100644
--- a/gst/rtp/gstrtpklvpay.c
+++ b/gst/rtp/gstrtpklvpay.c
@@ -79,7 +79,7 @@ gst_rtp_klv_pay_class_init (GstRtpKlvPayClass * klass)
gst_static_pad_template_get (&sink_template));
gst_element_class_set_static_metadata (element_class,
- "RTP KLV Payloader", "Codec/Payloader/Network",
+ "RTP KLV Payloader", "Codec/Payloader/Network/RTP",
"Payloads KLV (SMPTE ST 336) metadata as RTP packets",
"Tim-Philipp Müller <tim@centricular.com>");