summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2023-05-09 14:37:25 +0100
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-05-09 15:18:47 +0000
commitfd194a0a2b61830c28fc4f09ba638772731bb543 (patch)
tree67aee915b84a53a355c5f8301679d7db608074ea
parenta51fd006e607000521ca1788cd5af8cb1086bcfc (diff)
downloadgstreamer-fd194a0a2b61830c28fc4f09ba638772731bb543.tar.gz
rtpdtmfdepay: Classify as RTP element
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4582>
-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 af28493286..a355ff0f1e 100644
--- a/subprojects/gst-plugins-good/docs/gst_plugins_cache.json
+++ b/subprojects/gst-plugins-good/docs/gst_plugins_cache.json
@@ -5406,7 +5406,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>");