if ((current[i] == 0x0) &&
(current[i + 1] == 0x0) && (current[i + 2] >> 7 == 0x1)) {
GST_LOG ("GOB end found at: %p start: %p len: %u", current + i - 1,
- boundry->end + 1, current + i - boundry->end + 2);
+ boundry->end + 1, (guint) (current + i - boundry->end + 2));
gst_rtp_h263_pay_boundry_init (boundry, boundry->end + 1,
current + i - 1, 0, 0);
} else {
if (n > rest_bits) {
context->window =
- (context->window << rest_bits) | (*context->
- win_end & (((guint) pow (2.0, (double) rest_bits)) - 1));
+ (context->
+ window << rest_bits) | (*context->win_end & (((guint) pow (2.0,
+ (double) rest_bits)) - 1));
n -= rest_bits;
rest_bits = 0;
} else {
gst_rtp_h263_pay_boundry_init (&bound, NULL, rtph263pay->data - 1, 0, 0);
context->gobs =
- (GstRtpH263PayGob **) g_malloc0 (format_props[context->piclayer->
- ptype_srcformat][0] * sizeof (GstRtpH263PayGob *));
+ (GstRtpH263PayGob **) g_malloc0 (format_props[context->
+ piclayer->ptype_srcformat][0] * sizeof (GstRtpH263PayGob *));
for (i = 0; i < format_props[context->piclayer->ptype_srcformat][0]; i++) {
if (!cont)
break;
}
- GST_LOG_OBJECT (rtpvrawpay, "consumed %u bytes", outdata - headers);
+ GST_LOG_OBJECT (rtpvrawpay, "consumed %u bytes",
+ (guint) (outdata - headers));
/* second pass, read headers and write the data */
while (TRUE) {