diff options
author | Josep Torra <n770galaxy@gmail.com> | 2009-10-09 11:57:59 +0200 |
---|---|---|
committer | Josep Torra <n770galaxy@gmail.com> | 2009-10-09 11:57:59 +0200 |
commit | a1fbe6431740307ce5de956e42ccc302adb7e325 (patch) | |
tree | 8cab0cc521ea49653d5692d66aa92162f2800cd3 | |
parent | c3d3eb6c3b91e85792628f78e6330b9c4ed6f899 (diff) |
rtph263pay: fix warning on macosx
-rw-r--r-- | gst/rtp/gstrtph263pay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtph263pay.c b/gst/rtp/gstrtph263pay.c index 7a3a0334..fea83b2b 100644 --- a/gst/rtp/gstrtph263pay.c +++ b/gst/rtp/gstrtph263pay.c @@ -708,7 +708,7 @@ gst_rtp_h263_pay_gobfinder (GstRtpH263Pay * rtph263pay, if ((current[i] == 0x0) && (current[i + 1] == 0x0) && (current[i + 2] >> 7 == 0x1)) { GST_LOG ("GOB end found at: %p start: %p len: %d", current + i - 1, - boundry->end + 1, current + i - boundry->end + 2); + boundry->end + 1, (gint) (current + i - boundry->end + 2)); gst_rtp_h263_pay_boundry_init (boundry, boundry->end + 1, current + i - 1, 0, 0); |