2011-12-07 17:13:11 +00:00
|
|
|
/*
|
|
|
|
* Opus Payloader Gst Element
|
|
|
|
*
|
|
|
|
* @author: Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2011-12-07 17:13:11 +00:00
|
|
|
*/
|
|
|
|
|
2020-12-07 18:51:35 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-rtpopuspay
|
|
|
|
* @title: rtpopuspay
|
|
|
|
*
|
|
|
|
* rtpopuspay encapsulates Opus-encoded audio data into RTP packets following
|
|
|
|
* the payload format described in RFC 7587.
|
|
|
|
*
|
|
|
|
* In addition to the RFC, which assumes only mono and stereo payload,
|
|
|
|
* the element supports multichannel Opus audio streams using a non-standardized
|
|
|
|
* SDP config and "multiopus" codec developed by Google for libwebrtc. When the
|
|
|
|
* input data have more than 2 channels, rtpopuspay will add extra fields to
|
|
|
|
* output caps that can be used to generate SDP in the syntax understood by
|
|
|
|
* libwebrtc. For example in the case of 5.1 audio:
|
|
|
|
*
|
|
|
|
* |[
|
|
|
|
* a=rtpmap:96 multiopus/48000/6
|
|
|
|
* a=fmtp:96 num_streams=4;coupled_streams=2;channel_mapping=0,4,1,2,3,5
|
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
* See https://webrtc-review.googlesource.com/c/src/+/129768 for more details on
|
|
|
|
* multichannel Opus in libwebrtc.
|
|
|
|
*/
|
|
|
|
|
2011-12-07 17:13:11 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <gst/rtp/gstrtpbuffer.h>
|
2015-06-30 11:51:33 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2011-12-07 17:13:11 +00:00
|
|
|
|
2021-02-12 12:16:28 +00:00
|
|
|
#include "gstrtpelements.h"
|
2011-12-07 17:13:11 +00:00
|
|
|
#include "gstrtpopuspay.h"
|
2017-05-24 15:14:54 +00:00
|
|
|
#include "gstrtputils.h"
|
2011-12-07 17:13:11 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (rtpopuspay_debug);
|
|
|
|
#define GST_CAT_DEFAULT (rtpopuspay_debug)
|
|
|
|
|
2021-03-31 09:18:30 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_DTX,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DEFAULT_DTX FALSE
|
2011-12-07 17:13:11 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_rtp_opus_pay_sink_template =
|
2020-11-30 20:49:48 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
2011-12-07 17:13:11 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2020-11-30 20:49:48 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-opus, channel-mapping-family = (int) 0;"
|
|
|
|
"audio/x-opus, channel-mapping-family = (int) 0, channels = (int) [1, 2];"
|
|
|
|
"audio/x-opus, channel-mapping-family = (int) 1, channels = (int) [3, 255]")
|
2011-12-07 17:13:11 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_rtp_opus_pay_src_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("application/x-rtp, "
|
|
|
|
"media = (string) \"audio\", "
|
|
|
|
"payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
|
|
|
|
"clock-rate = (int) 48000, "
|
2020-11-30 20:49:48 +00:00
|
|
|
"encoding-name = (string) { \"OPUS\", \"X-GST-OPUS-DRAFT-SPITTKA-00\", \"multiopus\" }")
|
2011-12-07 17:13:11 +00:00
|
|
|
);
|
|
|
|
|
2011-12-30 10:41:17 +00:00
|
|
|
static gboolean gst_rtp_opus_pay_setcaps (GstRTPBasePayload * payload,
|
2011-12-07 17:13:11 +00:00
|
|
|
GstCaps * caps);
|
2015-03-24 17:57:54 +00:00
|
|
|
static GstCaps *gst_rtp_opus_pay_getcaps (GstRTPBasePayload * payload,
|
|
|
|
GstPad * pad, GstCaps * filter);
|
2011-12-30 10:41:17 +00:00
|
|
|
static GstFlowReturn gst_rtp_opus_pay_handle_buffer (GstRTPBasePayload *
|
2011-12-07 17:13:11 +00:00
|
|
|
payload, GstBuffer * buffer);
|
|
|
|
|
2011-12-30 10:41:17 +00:00
|
|
|
G_DEFINE_TYPE (GstRtpOPUSPay, gst_rtp_opus_pay, GST_TYPE_RTP_BASE_PAYLOAD);
|
2021-02-12 12:16:28 +00:00
|
|
|
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (rtpopuspay, "rtpopuspay",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_RTP_OPUS_PAY, rtp_element_init (plugin));
|
2011-12-07 17:13:11 +00:00
|
|
|
|
2021-03-31 09:18:30 +00:00
|
|
|
#define GST_RTP_OPUS_PAY_CAST(obj) ((GstRtpOPUSPay *)(obj))
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtp_opus_pay_set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstRtpOPUSPay *self = GST_RTP_OPUS_PAY (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DTX:
|
|
|
|
self->dtx = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtp_opus_pay_get_property (GObject * object,
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstRtpOPUSPay *self = GST_RTP_OPUS_PAY (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DTX:
|
|
|
|
g_value_set_boolean (value, self->dtx);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-02 16:41:28 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_rtp_opus_pay_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstRtpOPUSPay *self = GST_RTP_OPUS_PAY (element);
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
self->marker = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret =
|
|
|
|
GST_ELEMENT_CLASS (gst_rtp_opus_pay_parent_class)->change_state (element,
|
|
|
|
transition);
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-12-07 17:13:11 +00:00
|
|
|
static void
|
2011-12-30 10:41:17 +00:00
|
|
|
gst_rtp_opus_pay_class_init (GstRtpOPUSPayClass * klass)
|
2011-12-07 17:13:11 +00:00
|
|
|
{
|
2011-12-30 10:41:17 +00:00
|
|
|
GstRTPBasePayloadClass *gstbasertppayload_class;
|
|
|
|
GstElementClass *element_class;
|
2021-03-31 09:18:30 +00:00
|
|
|
GObjectClass *gobject_class;
|
2011-12-30 10:41:17 +00:00
|
|
|
|
|
|
|
gstbasertppayload_class = (GstRTPBasePayloadClass *) klass;
|
|
|
|
element_class = GST_ELEMENT_CLASS (klass);
|
2021-03-31 09:18:30 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2011-12-30 10:41:17 +00:00
|
|
|
|
2021-04-02 16:41:28 +00:00
|
|
|
element_class->change_state = gst_rtp_opus_pay_change_state;
|
|
|
|
|
2011-12-30 10:41:17 +00:00
|
|
|
gstbasertppayload_class->set_caps = gst_rtp_opus_pay_setcaps;
|
2015-03-24 17:57:54 +00:00
|
|
|
gstbasertppayload_class->get_caps = gst_rtp_opus_pay_getcaps;
|
2011-12-30 10:41:17 +00:00
|
|
|
gstbasertppayload_class->handle_buffer = gst_rtp_opus_pay_handle_buffer;
|
2011-12-07 17:13:11 +00:00
|
|
|
|
2021-03-31 09:18:30 +00:00
|
|
|
gobject_class->set_property = gst_rtp_opus_pay_set_property;
|
|
|
|
gobject_class->get_property = gst_rtp_opus_pay_get_property;
|
|
|
|
|
2016-03-04 01:30:12 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_rtp_opus_pay_src_template);
|
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_rtp_opus_pay_sink_template);
|
2011-12-07 17:13:11 +00:00
|
|
|
|
2021-03-31 09:18:30 +00:00
|
|
|
/**
|
|
|
|
* GstRtpOPUSPay:dtx:
|
|
|
|
*
|
|
|
|
* If enabled, the payloader will not transmit empty packets.
|
|
|
|
*
|
|
|
|
* Since: 1.20
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_DTX,
|
|
|
|
g_param_spec_boolean ("dtx", "Discontinuous Transmission",
|
|
|
|
"If enabled, the payloader will not transmit empty packets",
|
|
|
|
DEFAULT_DTX,
|
|
|
|
G_PARAM_READWRITE | GST_PARAM_MUTABLE_PLAYING |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2012-10-17 16:34:26 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class,
|
2011-12-07 17:13:11 +00:00
|
|
|
"RTP Opus payloader",
|
|
|
|
"Codec/Payloader/Network/RTP",
|
|
|
|
"Puts Opus audio in RTP packets",
|
|
|
|
"Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>");
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (rtpopuspay_debug, "rtpopuspay", 0,
|
|
|
|
"Opus RTP Payloader");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-12-30 10:41:17 +00:00
|
|
|
gst_rtp_opus_pay_init (GstRtpOPUSPay * rtpopuspay)
|
2011-12-07 17:13:11 +00:00
|
|
|
{
|
2021-03-31 09:18:30 +00:00
|
|
|
rtpopuspay->dtx = DEFAULT_DTX;
|
2011-12-07 17:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-12-30 10:41:17 +00:00
|
|
|
gst_rtp_opus_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
|
2011-12-07 17:13:11 +00:00
|
|
|
{
|
|
|
|
gboolean res;
|
2015-02-05 10:27:51 +00:00
|
|
|
GstCaps *src_caps;
|
2020-11-30 21:10:14 +00:00
|
|
|
GstStructure *s, *outcaps;
|
2018-07-14 02:31:04 +00:00
|
|
|
const char *encoding_name = "OPUS";
|
2020-11-30 20:49:48 +00:00
|
|
|
gint channels = 2;
|
|
|
|
gint rate;
|
|
|
|
gchar *encoding_params;
|
2020-11-30 21:10:14 +00:00
|
|
|
|
|
|
|
outcaps = gst_structure_new_empty ("unused");
|
2015-02-05 10:27:51 +00:00
|
|
|
|
|
|
|
src_caps = gst_pad_get_allowed_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload));
|
|
|
|
if (src_caps) {
|
2018-07-14 02:31:04 +00:00
|
|
|
GstStructure *s;
|
|
|
|
const GValue *value;
|
|
|
|
|
2015-02-05 10:27:51 +00:00
|
|
|
s = gst_caps_get_structure (src_caps, 0);
|
2018-07-14 02:31:04 +00:00
|
|
|
|
|
|
|
if (gst_structure_has_field (s, "encoding-name")) {
|
|
|
|
GValue default_value = G_VALUE_INIT;
|
|
|
|
|
|
|
|
g_value_init (&default_value, G_TYPE_STRING);
|
|
|
|
g_value_set_static_string (&default_value, encoding_name);
|
|
|
|
|
|
|
|
value = gst_structure_get_value (s, "encoding-name");
|
|
|
|
if (!gst_value_can_intersect (&default_value, value))
|
|
|
|
encoding_name = "X-GST-OPUS-DRAFT-SPITTKA-00";
|
|
|
|
}
|
2019-07-22 08:28:50 +00:00
|
|
|
gst_caps_unref (src_caps);
|
2015-02-05 10:27:51 +00:00
|
|
|
}
|
2011-12-07 17:13:11 +00:00
|
|
|
|
2015-03-23 11:24:55 +00:00
|
|
|
s = gst_caps_get_structure (caps, 0);
|
|
|
|
if (gst_structure_get_int (s, "channels", &channels)) {
|
|
|
|
if (channels > 2) {
|
2020-11-30 20:49:48 +00:00
|
|
|
/* Implies channel-mapping-family = 1. */
|
|
|
|
|
|
|
|
gint stream_count, coupled_count;
|
|
|
|
const GValue *channel_mapping_array;
|
|
|
|
|
|
|
|
/* libwebrtc only supports "multiopus" when channels > 2. Mono and stereo
|
|
|
|
* sound must always be payloaded according to RFC 7587. */
|
|
|
|
encoding_name = "multiopus";
|
|
|
|
|
|
|
|
if (gst_structure_get_int (s, "stream-count", &stream_count)) {
|
|
|
|
char *num_streams = g_strdup_printf ("%d", stream_count);
|
|
|
|
gst_structure_set (outcaps, "num_streams", G_TYPE_STRING, num_streams,
|
|
|
|
NULL);
|
|
|
|
g_free (num_streams);
|
|
|
|
}
|
|
|
|
if (gst_structure_get_int (s, "coupled-count", &coupled_count)) {
|
|
|
|
char *coupled_streams = g_strdup_printf ("%d", coupled_count);
|
|
|
|
gst_structure_set (outcaps, "coupled_streams", G_TYPE_STRING,
|
|
|
|
coupled_streams, NULL);
|
|
|
|
g_free (coupled_streams);
|
|
|
|
}
|
|
|
|
|
|
|
|
channel_mapping_array = gst_structure_get_value (s, "channel-mapping");
|
|
|
|
if (GST_VALUE_HOLDS_ARRAY (channel_mapping_array)) {
|
|
|
|
GString *str = g_string_new (NULL);
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < gst_value_array_get_size (channel_mapping_array); ++i) {
|
|
|
|
if (i != 0) {
|
|
|
|
g_string_append_c (str, ',');
|
|
|
|
}
|
|
|
|
g_string_append_printf (str, "%d",
|
|
|
|
g_value_get_int (gst_value_array_get_value (channel_mapping_array,
|
|
|
|
i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_structure_set (outcaps, "channel_mapping", G_TYPE_STRING, str->str,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_string_free (str, TRUE);
|
|
|
|
}
|
2015-03-23 11:24:55 +00:00
|
|
|
} else {
|
2020-11-30 21:10:14 +00:00
|
|
|
gst_structure_set (outcaps, "sprop-stereo", G_TYPE_STRING,
|
|
|
|
(channels == 2) ? "1" : "0", NULL);
|
2020-11-30 20:49:48 +00:00
|
|
|
/* RFC 7587 requires the number of channels always be 2. */
|
|
|
|
channels = 2;
|
2015-03-23 11:24:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-30 20:49:48 +00:00
|
|
|
encoding_params = g_strdup_printf ("%d", channels);
|
|
|
|
gst_structure_set (outcaps, "encoding-params", G_TYPE_STRING,
|
|
|
|
encoding_params, NULL);
|
|
|
|
g_free (encoding_params);
|
|
|
|
|
2015-03-23 11:24:55 +00:00
|
|
|
if (gst_structure_get_int (s, "rate", &rate)) {
|
2020-11-30 21:10:14 +00:00
|
|
|
gchar *sprop_maxcapturerate = g_strdup_printf ("%d", rate);
|
|
|
|
|
|
|
|
gst_structure_set (outcaps, "sprop-maxcapturerate", G_TYPE_STRING,
|
|
|
|
sprop_maxcapturerate, NULL);
|
|
|
|
|
|
|
|
g_free (sprop_maxcapturerate);
|
2015-03-23 11:24:55 +00:00
|
|
|
}
|
|
|
|
|
2011-12-30 10:41:17 +00:00
|
|
|
gst_rtp_base_payload_set_options (payload, "audio", FALSE,
|
2015-02-05 10:27:51 +00:00
|
|
|
encoding_name, 48000);
|
2015-03-23 11:24:55 +00:00
|
|
|
|
2020-11-30 21:10:14 +00:00
|
|
|
res = gst_rtp_base_payload_set_outcaps_structure (payload, outcaps);
|
2015-03-23 11:24:55 +00:00
|
|
|
|
2020-11-30 21:10:14 +00:00
|
|
|
gst_structure_free (outcaps);
|
2011-12-07 17:13:11 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2011-12-30 10:41:17 +00:00
|
|
|
gst_rtp_opus_pay_handle_buffer (GstRTPBasePayload * basepayload,
|
2011-12-07 17:13:11 +00:00
|
|
|
GstBuffer * buffer)
|
|
|
|
{
|
2021-03-31 09:18:30 +00:00
|
|
|
GstRtpOPUSPay *self = GST_RTP_OPUS_PAY_CAST (basepayload);
|
2011-12-07 17:13:11 +00:00
|
|
|
GstBuffer *outbuf;
|
2013-01-31 11:30:49 +00:00
|
|
|
GstClockTime pts, dts, duration;
|
|
|
|
|
2021-03-31 09:18:30 +00:00
|
|
|
/* DTX packets are zero-length frames, with a 1 or 2-bytes header */
|
|
|
|
if (self->dtx && gst_buffer_get_size (buffer) <= 2) {
|
|
|
|
GST_LOG_OBJECT (self,
|
|
|
|
"discard empty buffer as DTX is enabled: %" GST_PTR_FORMAT, buffer);
|
2021-04-02 16:41:28 +00:00
|
|
|
self->marker = TRUE;
|
2021-03-31 09:18:30 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
2013-01-31 11:30:49 +00:00
|
|
|
pts = GST_BUFFER_PTS (buffer);
|
|
|
|
dts = GST_BUFFER_DTS (buffer);
|
|
|
|
duration = GST_BUFFER_DURATION (buffer);
|
2012-09-20 22:41:24 +00:00
|
|
|
|
2017-06-30 07:48:58 +00:00
|
|
|
outbuf = gst_rtp_base_payload_allocate_output_buffer (basepayload, 0, 0, 0);
|
2017-05-24 15:14:54 +00:00
|
|
|
|
|
|
|
gst_rtp_copy_audio_meta (basepayload, outbuf, buffer);
|
|
|
|
|
2013-01-31 11:30:49 +00:00
|
|
|
outbuf = gst_buffer_append (outbuf, buffer);
|
|
|
|
|
|
|
|
GST_BUFFER_PTS (outbuf) = pts;
|
|
|
|
GST_BUFFER_DTS (outbuf) = dts;
|
|
|
|
GST_BUFFER_DURATION (outbuf) = duration;
|
2011-12-30 10:41:17 +00:00
|
|
|
|
2021-04-02 16:41:28 +00:00
|
|
|
if (self->marker) {
|
2021-09-10 22:03:55 +00:00
|
|
|
GstRTPBuffer rtp = GST_RTP_BUFFER_INIT;
|
|
|
|
|
|
|
|
gst_rtp_buffer_map (outbuf, GST_MAP_READWRITE, &rtp);
|
|
|
|
gst_rtp_buffer_set_marker (&rtp, TRUE);
|
|
|
|
gst_rtp_buffer_unmap (&rtp);
|
|
|
|
|
2021-04-02 16:41:28 +00:00
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_MARKER);
|
|
|
|
self->marker = FALSE;
|
|
|
|
}
|
|
|
|
|
2011-12-30 10:41:17 +00:00
|
|
|
/* Push out */
|
|
|
|
return gst_rtp_base_payload_push (basepayload, outbuf);
|
2011-12-07 17:13:11 +00:00
|
|
|
}
|
2015-03-24 17:57:54 +00:00
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_rtp_opus_pay_getcaps (GstRTPBasePayload * payload,
|
|
|
|
GstPad * pad, GstCaps * filter)
|
|
|
|
{
|
|
|
|
GstCaps *caps, *peercaps, *tcaps;
|
|
|
|
GstStructure *s;
|
|
|
|
const gchar *stereo;
|
|
|
|
|
|
|
|
if (pad == GST_RTP_BASE_PAYLOAD_SRCPAD (payload))
|
|
|
|
return
|
|
|
|
GST_RTP_BASE_PAYLOAD_CLASS (gst_rtp_opus_pay_parent_class)->get_caps
|
|
|
|
(payload, pad, filter);
|
|
|
|
|
|
|
|
tcaps = gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload));
|
|
|
|
peercaps = gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload),
|
|
|
|
tcaps);
|
|
|
|
gst_caps_unref (tcaps);
|
|
|
|
if (!peercaps)
|
|
|
|
return
|
|
|
|
GST_RTP_BASE_PAYLOAD_CLASS (gst_rtp_opus_pay_parent_class)->get_caps
|
|
|
|
(payload, pad, filter);
|
|
|
|
|
|
|
|
if (gst_caps_is_empty (peercaps))
|
|
|
|
return peercaps;
|
|
|
|
|
|
|
|
caps = gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SINKPAD (payload));
|
|
|
|
|
|
|
|
s = gst_caps_get_structure (peercaps, 0);
|
|
|
|
stereo = gst_structure_get_string (s, "stereo");
|
|
|
|
if (stereo != NULL) {
|
|
|
|
caps = gst_caps_make_writable (caps);
|
|
|
|
|
|
|
|
if (!strcmp (stereo, "1")) {
|
|
|
|
GstCaps *caps2 = gst_caps_copy (caps);
|
|
|
|
|
|
|
|
gst_caps_set_simple (caps, "channels", G_TYPE_INT, 2, NULL);
|
|
|
|
gst_caps_set_simple (caps2, "channels", G_TYPE_INT, 1, NULL);
|
|
|
|
caps = gst_caps_merge (caps, caps2);
|
|
|
|
} else if (!strcmp (stereo, "0")) {
|
|
|
|
GstCaps *caps2 = gst_caps_copy (caps);
|
|
|
|
|
|
|
|
gst_caps_set_simple (caps, "channels", G_TYPE_INT, 1, NULL);
|
|
|
|
gst_caps_set_simple (caps2, "channels", G_TYPE_INT, 2, NULL);
|
|
|
|
caps = gst_caps_merge (caps, caps2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gst_caps_unref (peercaps);
|
|
|
|
|
|
|
|
if (filter) {
|
|
|
|
GstCaps *tmp = gst_caps_intersect_full (caps, filter,
|
|
|
|
GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
caps = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (payload, "Returning caps: %" GST_PTR_FORMAT, caps);
|
|
|
|
return caps;
|
|
|
|
}
|