summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-10-22 12:08:41 +0200
committerTim-Philipp Müller <tim@centricular.com>2016-02-17 14:58:00 +0000
commit5d893c7ea23389df06c5ca00014ac0c89225a719 (patch)
treed50582f7cc06b2838bbb7bf06851098856df8daa
parent17742d234797811dfcdfec54fb009c30799d2e9f (diff)
downloadgstreamer-plugins-good-5d893c7ea23389df06c5ca00014ac0c89225a719.tar.gz
opuspay: remove pointless caps serialization
Remove the caps serialization in the rtp caps. the spec nor the receiver does anything with it. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=686547
-rw-r--r--gst/rtp/gstrtpopuspay.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/gst/rtp/gstrtpopuspay.c b/gst/rtp/gstrtpopuspay.c
index cb3279c2a..5ba3217cd 100644
--- a/gst/rtp/gstrtpopuspay.c
+++ b/gst/rtp/gstrtpopuspay.c
@@ -94,16 +94,10 @@ static gboolean
gst_rtp_opus_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
{
gboolean res;
- gchar *capsstr;
-
- capsstr = gst_caps_to_string (caps);
gst_rtp_base_payload_set_options (payload, "audio", FALSE,
"X-GST-OPUS-DRAFT-SPITTKA-00", 48000);
- res =
- gst_rtp_base_payload_set_outcaps (payload, "caps", G_TYPE_STRING, capsstr,
- NULL);
- g_free (capsstr);
+ res = gst_rtp_base_payload_set_outcaps (payload, NULL);
return res;
}