mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
rtpmpadepay: Relax caps to allow any clock-rate
Some Wowza setups seem to send an invalid non-90000 clock-rate.
This commit is contained in:
parent
148da6210a
commit
e3b0fb2a5d
1 changed files with 3 additions and 3 deletions
|
@ -42,11 +42,11 @@ static GstStaticPadTemplate gst_rtp_mpa_depay_sink_template =
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("application/x-rtp, "
|
||||
"media = (string) \"audio\", "
|
||||
"clock-rate = (int) 90000, " "encoding-name = (string) \"MPA\";"
|
||||
"payload = (int) " GST_RTP_PAYLOAD_MPA_STRING ", "
|
||||
"clock-rate = (int) 90000 ;"
|
||||
"application/x-rtp, "
|
||||
"media = (string) \"audio\", "
|
||||
"payload = (int) " GST_RTP_PAYLOAD_MPA_STRING ", "
|
||||
"clock-rate = (int) 90000")
|
||||
"encoding-name = (string) \"MPA\", clock-rate = (int) [1, MAX]")
|
||||
);
|
||||
|
||||
#define gst_rtp_mpa_depay_parent_class parent_class
|
||||
|
|
Loading…
Reference in a new issue