rtpspeexdepay: Remove caps restrictions for depayloader

The "encoding-params" is optional in the SDP, because we now require
a subset of the caps, it would fail caps negotiatioin if it wasn't present.
So removed it from the template caps.
This commit is contained in:
Olivier Crête 2014-03-06 11:02:09 -05:00
parent 9701051485
commit 5a9b988b85

View file

@ -46,8 +46,8 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_STATIC_CAPS ("application/x-rtp, "
"media = (string) \"audio\", "
"clock-rate = (int) [6000, 48000], "
"encoding-name = (string) \"SPEEX\", "
"encoding-params = (string) \"1\"")
"encoding-name = (string) \"SPEEX\", ")
/* "encoding-params = (string) \"1\"" */
);
static GstStaticPadTemplate gst_rtp_speex_depay_src_template =