Lines Matching defs:line_packets
179 int line_packets;
278 line_packets = sign_extend(bytestream2_get_le16(&g2), 16);
279 if ((line_packets & 0xC000) == 0xC000) {
281 line_packets = -line_packets;
282 if (line_packets > s->avctx->height)
284 y_ptr += line_packets * s->frame->linesize[0];
285 } else if ((line_packets & 0xC000) == 0x4000) {
286 av_log(avctx, AV_LOG_ERROR, "Undefined opcode (%x) in DELTA_FLI\n", line_packets);
287 } else if ((line_packets & 0xC000) == 0x8000) {
291 pixels[pixel_ptr] = line_packets & 0xff;
297 for (i = 0; i < line_packets; i++) {
344 line_packets = bytestream2_get_byte(&g2);
345 if (line_packets > 0) {
346 for (i = 0; i < line_packets; i++) {
512 int line_packets;
576 line_packets = sign_extend(bytestream2_get_le16(&g2), 16);
577 if (line_packets < 0) {
578 line_packets = -line_packets;
579 if (line_packets > s->avctx->height)
581 y_ptr += line_packets * s->frame->linesize[0];
587 for (i = 0; i < line_packets; i++) {
812 int line_packets;
876 line_packets = sign_extend(bytestream2_get_le16(&g2), 16);
877 if (line_packets < 0) {
878 line_packets = -line_packets;
879 if (line_packets > s->avctx->height)
881 y_ptr += line_packets * s->frame->linesize[0];
887 for (i = 0; i < line_packets; i++) {