summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorOlivier Crete <olivier.crete@collabora.co.uk>2008-03-19 19:32:51 +0000
committerEdward Hervey <bilboed@bilboed.com>2009-02-21 17:48:04 +0100
commit3f8af94593de1390336960fa9e70ceaa0ff7b633 (patch)
tree83d35396ddd99143c329181a89af3732e09ce1f1 /gst
parent0af41631f2c0e39a61b45b801305b9001b0d0e1a (diff)
downloadgst-plugins-bad-3f8af94593de1390336960fa9e70ceaa0ff7b633.tar.gz
gst-plugins-bad-3f8af94593de1390336960fa9e70ceaa0ff7b633.tar.bz2
gst-plugins-bad-3f8af94593de1390336960fa9e70ceaa0ff7b633.zip
[MOVED FROM GST-P-FARSIGHT] encoding name has to be upper-case
20080319193251-3e2dc-1581b33be9b486e35ec4948009677ccd5ffdc098.gz
Diffstat (limited to 'gst')
-rw-r--r--gst/dtmf/gstrtpdtmfsrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/dtmf/gstrtpdtmfsrc.c b/gst/dtmf/gstrtpdtmfsrc.c
index 0fcce3fa..76c2b0e7 100644
--- a/gst/dtmf/gstrtpdtmfsrc.c
+++ b/gst/dtmf/gstrtpdtmfsrc.c
@@ -194,7 +194,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
"payload = (int) [ 96, 127 ], "
"clock-rate = (int) [ 0, MAX ], "
"ssrc = (int) [ 0, MAX ], "
- "encoding-name = (string) \"telephone-event\"")
+ "encoding-name = (string) \"TELEPHONE-EVENT\"")
/* "events = (string) \"1-16\" */
);
@@ -857,7 +857,7 @@ gst_rtp_dtmf_src_negotiate (GstBaseSrc * basesrc)
srccaps = gst_caps_new_simple ("application/x-rtp",
"media", G_TYPE_STRING, "audio",
"clock-rate", G_TYPE_INT, dtmfsrc->clock_rate,
- "encoding-name", G_TYPE_STRING, "telephone-event", NULL);
+ "encoding-name", G_TYPE_STRING, "TELEPHONE-EVENT", NULL);
/* the peer caps can override some of the defaults */
peercaps = gst_pad_peer_get_caps (GST_BASE_SRC_PAD (basesrc));