Lines Matching refs:pgroup
142 gint pgroup, xinc, yinc; in gst_rtp_vraw_pay_setcaps() local
175 pgroup = 4; in gst_rtp_vraw_pay_setcaps()
179 pgroup = 4; in gst_rtp_vraw_pay_setcaps()
183 pgroup = 3; in gst_rtp_vraw_pay_setcaps()
187 pgroup = 3; in gst_rtp_vraw_pay_setcaps()
191 pgroup = 3; in gst_rtp_vraw_pay_setcaps()
195 pgroup = 4; in gst_rtp_vraw_pay_setcaps()
200 pgroup = 6; in gst_rtp_vraw_pay_setcaps()
205 pgroup = 6; in gst_rtp_vraw_pay_setcaps()
210 pgroup = 5; in gst_rtp_vraw_pay_setcaps()
223 rtpvrawpay->pgroup = pgroup; in gst_rtp_vraw_pay_setcaps()
229 GST_DEBUG_OBJECT (payload, "xinc %d, yinc %d, pgroup %d", xinc, yinc, pgroup); in gst_rtp_vraw_pay_setcaps()
278 guint pgroup; in gst_rtp_vraw_pay_handle_buffer() local
314 pgroup = rtpvrawpay->pgroup; in gst_rtp_vraw_pay_handle_buffer()
329 pgroups_per_packet = (mtu - (12 + 14)) / pgroup; in gst_rtp_vraw_pay_handle_buffer()
407 if (!(left > (6 + pgroup))) { in gst_rtp_vraw_pay_handle_buffer()
414 while (left > (6 + pgroup)) { in gst_rtp_vraw_pay_handle_buffer()
420 length = (pixels * pgroup) / xinc; in gst_rtp_vraw_pay_handle_buffer()
428 pixels = (left / pgroup) * xinc; in gst_rtp_vraw_pay_handle_buffer()
429 length = (pixels * pgroup) / xinc; in gst_rtp_vraw_pay_handle_buffer()
450 cont = (left > (6 + pgroup) && line < height) ? 0x80 : 0x00; in gst_rtp_vraw_pay_handle_buffer()
480 pixels = length / pgroup; in gst_rtp_vraw_pay_handle_buffer()
495 memcpy (outdata, p0 + (lin * ystride) + (offs * pgroup), length); in gst_rtp_vraw_pay_handle_buffer()