From: Thomas Vander Stichele Date: Wed, 26 Oct 2005 10:03:02 +0000 (+0000) Subject: fix compilation X-Git-Tag: RELEASE-0_9_5~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60f30e3083fb6434808890fe68ffe906c5c12667;p=platform%2Fupstream%2Fgst-plugins-good.git fix compilation Original commit message from CVS: fix compilation --- diff --git a/ChangeLog b/ChangeLog index d554595..9da7c90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-26 Thomas Vander Stichele + + * gst/rtp/gstrtpgsmenc.c: + Fix compilation + 2005-10-25 Edgard Lima * gst/rtp/gstrtpg711dec.c diff --git a/gst/rtp/gstrtpgsmenc.c b/gst/rtp/gstrtpgsmenc.c index 06fc951..692f388 100644 --- a/gst/rtp/gstrtpgsmenc.c +++ b/gst/rtp/gstrtpgsmenc.c @@ -139,7 +139,7 @@ gst_rtpgsmenc_setcaps (GstBaseRTPPayload * payload, GstCaps * caps) ret = gst_structure_get_int (structure, "rate", - &(GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate)); + (gint *) & (GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate)); if (!ret) return FALSE; diff --git a/gst/rtp/gstrtpgsmpay.c b/gst/rtp/gstrtpgsmpay.c index 06fc951..692f388 100644 --- a/gst/rtp/gstrtpgsmpay.c +++ b/gst/rtp/gstrtpgsmpay.c @@ -139,7 +139,7 @@ gst_rtpgsmenc_setcaps (GstBaseRTPPayload * payload, GstCaps * caps) ret = gst_structure_get_int (structure, "rate", - &(GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate)); + (gint *) & (GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate)); if (!ret) return FALSE;