Declaring the padtemplate correctly.

Original commit message from CVS:
Declaring the padtemplate correctly.
This commit is contained in:
Zeeshan Ali 2005-10-26 21:47:36 +00:00
parent 1a3c167987
commit b08773ea83
5 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2005-10-27 Zeeshan Ali <zeenix@gmail.com>
* gst/rtp/gstrtpgsmenc.c:
* gst/rtp/gstrtpgsmparse.c:
Declaring the padtemplate correctly.
2005-10-26 Zeeshan Ali <zeenix@gmail.com>
* gst/rtp/gstrtpg711dec.c:

View file

@ -49,7 +49,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("application/x-rtp, "
"media = (string) \"audio\", "
"payload = (int) [ 96, 255 ], "
"payload = (int) [ 0, 255 ], "
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
);

View file

@ -49,7 +49,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("application/x-rtp, "
"media = (string) \"audio\", "
"payload = (int) [ 96, 255 ], "
"payload = (int) " GST_RTP_PAYLOAD_GSM_STRING ", "
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
);

View file

@ -49,7 +49,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("application/x-rtp, "
"media = (string) \"audio\", "
"payload = (int) [ 96, 255 ], "
"payload = (int) [ 0, 255 ], "
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
);

View file

@ -49,7 +49,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("application/x-rtp, "
"media = (string) \"audio\", "
"payload = (int) [ 96, 255 ], "
"payload = (int) " GST_RTP_PAYLOAD_GSM_STRING ", "
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
);