summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2023-05-09 14:37:25 +0100
committerTim-Philipp Müller <tim@centricular.com>2023-05-09 17:09:22 +0100
commit9f8d69540cb26c4c59d2b09a002b99d00dec9cd9 (patch)
treeac82d1a03ee7b94bfb2f2989af76c398d21b4d0c
parentff271e174147a4d2894fe408e09e637880fc4911 (diff)
downloadgstreamer-9f8d69540cb26c4c59d2b09a002b99d00dec9cd9.tar.gz
rtpdtmfdepay: Classify as RTP element
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4584>
-rw-r--r--subprojects/gst-plugins-good/docs/gst_plugins_cache.json2
-rw-r--r--subprojects/gst-plugins-good/gst/dtmf/gstrtpdtmfdepay.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/gst-plugins-good/docs/gst_plugins_cache.json b/subprojects/gst-plugins-good/docs/gst_plugins_cache.json
index aa54970e0f..5a6d553dd1 100644
--- a/subprojects/gst-plugins-good/docs/gst_plugins_cache.json
+++ b/subprojects/gst-plugins-good/docs/gst_plugins_cache.json
@@ -5181,7 +5181,7 @@
"GInitiallyUnowned",
"GObject"
],
- "klass": "Codec/Depayloader/Network",
+ "klass": "Codec/Depayloader/Network/RTP",
"long-name": "RTP DTMF packet depayloader",
"pad-templates": {
"sink": {
diff --git a/subprojects/gst-plugins-good/gst/dtmf/gstrtpdtmfdepay.c b/subprojects/gst-plugins-good/gst/dtmf/gstrtpdtmfdepay.c
index a819467a68..b0e39473d7 100644
--- a/subprojects/gst-plugins-good/gst/dtmf/gstrtpdtmfdepay.c
+++ b/subprojects/gst-plugins-good/gst/dtmf/gstrtpdtmfdepay.c
@@ -187,7 +187,7 @@ gst_rtp_dtmf_depay_class_init (GstRtpDTMFDepayClass * klass)
GST_DEBUG_CATEGORY_INIT (gst_rtp_dtmf_depay_debug,
"rtpdtmfdepay", 0, "rtpdtmfdepay element");
gst_element_class_set_static_metadata (gstelement_class,
- "RTP DTMF packet depayloader", "Codec/Depayloader/Network",
+ "RTP DTMF packet depayloader", "Codec/Depayloader/Network/RTP",
"Generates DTMF Sound from telephone-event RTP packets",
"Youness Alaoui <youness.alaoui@collabora.co.uk>");