mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
fix compilation
Original commit message from CVS: fix compilation
This commit is contained in:
parent
0f4689cdf4
commit
60f30e3083
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-10-26 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/rtp/gstrtpgsmenc.c:
|
||||||
|
Fix compilation
|
||||||
|
|
||||||
2005-10-25 Edgard Lima <edgard.lima@indt.org.br>
|
2005-10-25 Edgard Lima <edgard.lima@indt.org.br>
|
||||||
|
|
||||||
* gst/rtp/gstrtpg711dec.c
|
* gst/rtp/gstrtpg711dec.c
|
||||||
|
|
|
@ -139,7 +139,7 @@ gst_rtpgsmenc_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
|
||||||
|
|
||||||
ret =
|
ret =
|
||||||
gst_structure_get_int (structure, "rate",
|
gst_structure_get_int (structure, "rate",
|
||||||
&(GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate));
|
(gint *) & (GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate));
|
||||||
if (!ret)
|
if (!ret)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@ gst_rtpgsmenc_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
|
||||||
|
|
||||||
ret =
|
ret =
|
||||||
gst_structure_get_int (structure, "rate",
|
gst_structure_get_int (structure, "rate",
|
||||||
&(GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate));
|
(gint *) & (GST_BASE_RTP_PAYLOAD (rtpgsmenc)->clock_rate));
|
||||||
if (!ret)
|
if (!ret)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue