Lines Matching defs:pend
253 uint8_t *pend = y + 720;
257 while (py < pend) {
295 static uint8_t* teletext_data_unit_from_op47_data(uint16_t *py, uint16_t *pend, uint8_t *tgt, int64_t wanted_lines)
297 if (py < pend - 9) {
302 for (i = 0; i < 5 && py < pend - 45; i++, py += 45) {
312 static uint8_t* teletext_data_unit_from_ancillary_packet(uint16_t *py, uint16_t *pend, uint8_t *tgt, int64_t wanted_lines, int allow_multipacket)
318 pend = FFMIN(pend, py + dc);
320 tgt = teletext_data_unit_from_op47_data(py, pend, tgt, wanted_lines);
323 while (py < pend - 3) {
324 tgt = teletext_data_unit_from_ancillary_packet(py, pend, tgt, wanted_lines, 0);