Home
last modified time | relevance | path

Searched refs:next_restart_num (Results 1 – 5 of 5) sorted by relevance

/external/libjpeg-turbo/
Djcarith.c44 int next_restart_num; /* next restart number to write (0-7) */ member
380 emit_restart(cinfo, entropy->next_restart_num); in encode_mcu_DC_first()
382 entropy->next_restart_num++; in encode_mcu_DC_first()
383 entropy->next_restart_num &= 7; in encode_mcu_DC_first()
470 emit_restart(cinfo, entropy->next_restart_num); in encode_mcu_AC_first()
472 entropy->next_restart_num++; in encode_mcu_AC_first()
473 entropy->next_restart_num &= 7; in encode_mcu_AC_first()
567 emit_restart(cinfo, entropy->next_restart_num); in encode_mcu_DC_refine()
569 entropy->next_restart_num++; in encode_mcu_DC_refine()
570 entropy->next_restart_num &= 7; in encode_mcu_DC_refine()
[all …]
Djcphuff.c108 int next_restart_num; /* next restart number to write (0-7) */ member
288 entropy->next_restart_num = 0; in start_pass_phuff()
491 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_DC_first()
545 entropy->next_restart_num++; in encode_mcu_DC_first()
546 entropy->next_restart_num &= 7; in encode_mcu_DC_first()
672 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_AC_first()
728 entropy->next_restart_num++; in encode_mcu_AC_first()
729 entropy->next_restart_num &= 7; in encode_mcu_AC_first()
759 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_DC_refine()
777 entropy->next_restart_num++; in encode_mcu_DC_refine()
[all …]
Djchuff.c101 int next_restart_num; /* next restart number to write (0-7) */ member
209 entropy->next_restart_num = 0; in start_pass_huff()
659 if (!emit_restart(&state, entropy->next_restart_num)) in encode_mcu_huff()
699 entropy->next_restart_num++; in encode_mcu_huff()
700 entropy->next_restart_num &= 7; in encode_mcu_huff()
Djdmarker.c374 cinfo->marker->next_restart_num = 0; in get_sos()
1140 ((int)M_RST0 + cinfo->marker->next_restart_num)) { in read_restart_marker()
1142 TRACEMS1(cinfo, 3, JTRC_RST, cinfo->marker->next_restart_num); in read_restart_marker()
1148 cinfo->marker->next_restart_num)) in read_restart_marker()
1153 cinfo->marker->next_restart_num = (cinfo->marker->next_restart_num + 1) & 7; in read_restart_marker()
Djpegint.h218 int next_restart_num; /* next restart number expected (0-7) */ member