From 473a70bb21774e180ebe8f5c9bc46b24664e72b1 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 29 Oct 2020 15:58:38 +0100 Subject: [PATCH] docs: update plugins cache Part-of: --- docs/gst_plugins_cache.json | 54 +++++++++++++++++++++++++++++++++++++++++++++ gst/rtp/gstrtpisacdepay.c | 4 ++-- gst/rtp/gstrtpisacpay.c | 4 ++-- 3 files changed, 58 insertions(+), 4 deletions(-) diff --git a/docs/gst_plugins_cache.json b/docs/gst_plugins_cache.json index b8590d4..420897e 100644 --- a/docs/gst_plugins_cache.json +++ b/docs/gst_plugins_cache.json @@ -14064,6 +14064,60 @@ "properties": {}, "rank": "secondary" }, + "rtpisacdepay": { + "author": "Guillaume Desmottes ", + "description": "Extracts iSAC audio from RTP packets", + "hierarchy": [ + "GstRtpIsacDepay", + "GstRTPBaseDepayload", + "GstElement", + "GstObject", + "GInitiallyUnowned", + "GObject" + ], + "klass": "Codec/Depayloader/Network/RTP", + "long-name": "RTP iSAC depayloader", + "pad-templates": { + "sink": { + "caps": "application/x-rtp:\n media: audio\n payload: [ 96, 127 ]\n clock-rate: { (int)16000, (int)32000 }\n encoding-name: ISAC\n", + "direction": "sink", + "presence": "always" + }, + "src": { + "caps": "audio/isac:\n rate: { (int)16000, (int)32000 }\n channels: 1\n", + "direction": "src", + "presence": "always" + } + }, + "rank": "secondary" + }, + "rtpisacpay": { + "author": "Guillaume Desmottes ", + "description": "Payload-encodes iSAC audio into a RTP packet", + "hierarchy": [ + "GstRtpIsacPay", + "GstRTPBasePayload", + "GstElement", + "GstObject", + "GInitiallyUnowned", + "GObject" + ], + "klass": "Codec/Payloader/Network/RTP", + "long-name": "RTP iSAC payloader", + "pad-templates": { + "sink": { + "caps": "audio/isac:\n rate: { (int)16000, (int)32000 }\n channels: 1\n", + "direction": "sink", + "presence": "always" + }, + "src": { + "caps": "application/x-rtp:\n media: audio\n payload: [ 96, 127 ]\n clock-rate: { (int)16000, (int)32000 }\n encoding-name: ISAC\nencoding-params: 1\n", + "direction": "src", + "presence": "always" + } + }, + "rank": "secondary" + }, "rtpj2kdepay": { "author": "Wim Taymans ", "description": "Extracts JPEG 2000 video from RTP packets (RFC 5371)", diff --git a/gst/rtp/gstrtpisacdepay.c b/gst/rtp/gstrtpisacdepay.c index 1973847..38d02ac 100644 --- a/gst/rtp/gstrtpisacdepay.c +++ b/gst/rtp/gstrtpisacdepay.c @@ -19,8 +19,8 @@ */ /** - * SECTION:element-isacdepay - * @title: isacdepay + * SECTION:element-rtpisacdepay + * @title: rtpisacdepay * @short_description: iSAC RTP Depayloader * * Since: 1.20 diff --git a/gst/rtp/gstrtpisacpay.c b/gst/rtp/gstrtpisacpay.c index 750d975..7be272b 100644 --- a/gst/rtp/gstrtpisacpay.c +++ b/gst/rtp/gstrtpisacpay.c @@ -19,8 +19,8 @@ */ /** - * SECTION:element-isacpay - * @title: isacpay + * SECTION:element-rtpisacpay + * @title: rtpisacpay * @short_description: iSAC RTP Payloader * * Since: 1.20 -- 2.7.4