mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gst/rtp/gstrtpg729depay.c: Fix wrong caps string.
Original commit message from CVS: * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps): Fix wrong caps string.
This commit is contained in:
parent
d6f37dadb5
commit
21556043d2
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
|
||||||
|
Fix wrong caps string.
|
||||||
|
|
||||||
2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
Based on patch by: Olivier Crete <tester at tester dot ca>
|
Based on patch by: Olivier Crete <tester at tester dot ca>
|
||||||
|
|
|
@ -53,14 +53,14 @@ enum
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
static GstStaticPadTemplate gst_rtp_g729_depay_sink_template =
|
static GstStaticPadTemplate gst_rtp_g729_depay_sink_template =
|
||||||
GST_STATIC_PAD_TEMPLATE ("sink",
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("application/x-rtp, "
|
GST_STATIC_CAPS ("application/x-rtp, "
|
||||||
"media = (string) \"audio\", "
|
"media = (string) \"audio\", "
|
||||||
"payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
|
"payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
|
||||||
"clock-rate = (int) 8000, "
|
"clock-rate = (int) 8000, "
|
||||||
"encoding-name = (string) \"G729\", "
|
"encoding-name = (string) \"G729\"; "
|
||||||
"application/x-rtp, "
|
"application/x-rtp, "
|
||||||
"media = (string) \"audio\", "
|
"media = (string) \"audio\", "
|
||||||
"payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
|
"payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
|
||||||
|
|
Loading…
Reference in a new issue