From a1fbe6431740307ce5de956e42ccc302adb7e325 Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Fri, 9 Oct 2009 11:57:59 +0200 Subject: rtph263pay: fix warning on macosx --- gst/rtp/gstrtph263pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/rtp') 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); -- cgit