diff --git a/ChangeLog b/ChangeLog index 55edc3cc721d08a3b3ddbd78f082188561191a1d..01f544618444d31c5417557408f171b69a486da9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-10-27 Zeeshan Ali + + * gst/rtp/gstrtpgsmenc.c: + * gst/rtp/gstrtpgsmparse.c: + Declaring the padtemplate correctly. + 2005-10-26 Zeeshan Ali * gst/rtp/gstrtpg711dec.c: diff --git a/gst/rtp/gstrtpgsmdepay.c b/gst/rtp/gstrtpgsmdepay.c index 1f9d420823ee0a54035a4023ab2e5e9cb3d575d6..79a8b7b393ed1bb832bf9ba4e7885736ec5d120c 100644 --- a/gst/rtp/gstrtpgsmdepay.c +++ b/gst/rtp/gstrtpgsmdepay.c @@ -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\"") ); diff --git a/gst/rtp/gstrtpgsmenc.c b/gst/rtp/gstrtpgsmenc.c index f6a731dbba9997600e37c82ea61f1165bdd485b9..1a7d272650a3eec1e634834e23f7c96ae8d23618 100644 --- a/gst/rtp/gstrtpgsmenc.c +++ b/gst/rtp/gstrtpgsmenc.c @@ -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\"") ); diff --git a/gst/rtp/gstrtpgsmparse.c b/gst/rtp/gstrtpgsmparse.c index 1f9d420823ee0a54035a4023ab2e5e9cb3d575d6..79a8b7b393ed1bb832bf9ba4e7885736ec5d120c 100644 --- a/gst/rtp/gstrtpgsmparse.c +++ b/gst/rtp/gstrtpgsmparse.c @@ -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\"") ); diff --git a/gst/rtp/gstrtpgsmpay.c b/gst/rtp/gstrtpgsmpay.c index f6a731dbba9997600e37c82ea61f1165bdd485b9..1a7d272650a3eec1e634834e23f7c96ae8d23618 100644 --- a/gst/rtp/gstrtpgsmpay.c +++ b/gst/rtp/gstrtpgsmpay.c @@ -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\"") );