From 444336ab9055ff036ae8ba5ba25591174d3b87de Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 30 Mar 2002 17:06:26 +0000 Subject: Changed to the new props API Original commit message from CVS: Changed to the new props API Other small tuff. --- ext/gsm/gstgsmdec.c | 5 ++++- ext/gsm/gstgsmenc.c | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'ext/gsm') diff --git a/ext/gsm/gstgsmdec.c b/ext/gsm/gstgsmdec.c index 1da43975..0e2f4168 100644 --- a/ext/gsm/gstgsmdec.c +++ b/ext/gsm/gstgsmdec.c @@ -106,12 +106,15 @@ static GstPadConnectReturn gst_gsmdec_sinkconnect (GstPad *pad, GstCaps *caps) { GstGSMDec *gsmdec; + gint rate; gsmdec = GST_GSMDEC (gst_pad_get_parent (pad)); if (!GST_CAPS_IS_FIXED (caps)) return GST_PAD_CONNECT_DELAYED; + gst_caps_get_int (caps, "rate", &rate); + if (gst_pad_try_set_caps (gsmdec->srcpad, GST_CAPS_NEW ( "gsm_raw", @@ -122,7 +125,7 @@ gst_gsmdec_sinkconnect (GstPad *pad, GstCaps *caps) "signed", GST_PROPS_BOOLEAN (TRUE), "width", GST_PROPS_INT (16), "depth", GST_PROPS_INT (16), - "rate", GST_PROPS_INT (gst_caps_get_int (caps, "rate")), + "rate", GST_PROPS_INT (rate), "channels", GST_PROPS_INT (1) ))) { diff --git a/ext/gsm/gstgsmenc.c b/ext/gsm/gstgsmenc.c index bd930dc7..e9a61cde 100644 --- a/ext/gsm/gstgsmenc.c +++ b/ext/gsm/gstgsmenc.c @@ -123,7 +123,7 @@ gst_gsmenc_sinkconnect (GstPad *pad, GstCaps *caps) if (!GST_CAPS_IS_FIXED (caps)) return GST_PAD_CONNECT_DELAYED; - gsmenc->rate = gst_caps_get_int (caps, "rate"); + gst_caps_get_int (caps, "rate", &gsmenc->rate); if (gst_pad_try_set_caps (gsmenc->srcpad, GST_CAPS_NEW ( "gsm_gsm", "audio/x-gsm", -- cgit v1.2.1