Lines Matching refs:offs
430 guint length, line, offs, plen; in gst_rtp_vraw_depay_process_packet() local
441 offs = ((headers[4] & 0x7f) << 8) | headers[5]; in gst_rtp_vraw_depay_process_packet()
457 if (offs > (width - xinc)) { in gst_rtp_vraw_depay_process_packet()
458 GST_WARNING_OBJECT (depayload, "skipping offset %d: out of range", offs); in gst_rtp_vraw_depay_process_packet()
463 if (offs + ((length / pgroup) * xinc) > width) { in gst_rtp_vraw_depay_process_packet()
464 plen = ((width - offs) * pgroup) / xinc; in gst_rtp_vraw_depay_process_packet()
466 length, offs, plen); in gst_rtp_vraw_depay_process_packet()
472 line, offs, payload_len); in gst_rtp_vraw_depay_process_packet()
482 offs /= xinc; in gst_rtp_vraw_depay_process_packet()
483 datap = p0 + (line * ystride) + (offs * pgroup); in gst_rtp_vraw_depay_process_packet()
492 datap = p0 + (line * ystride) + (offs * 4); in gst_rtp_vraw_depay_process_packet()
512 yd1p = yp + (line * ystride) + (offs); in gst_rtp_vraw_depay_process_packet()
514 uvoff = (line / yinc * uvstride) + (offs / xinc); in gst_rtp_vraw_depay_process_packet()
538 ydp = yp + (line * ystride) + (offs); in gst_rtp_vraw_depay_process_packet()
539 uvoff = (line / yinc * uvstride) + (offs / xinc); in gst_rtp_vraw_depay_process_packet()