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.c113 int next_restart_num; /* next restart number to write (0-7) */ member
295 entropy->next_restart_num = 0; in start_pass_phuff()
498 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_DC_first()
552 entropy->next_restart_num++; in encode_mcu_DC_first()
553 entropy->next_restart_num &= 7; in encode_mcu_DC_first()
679 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_AC_first()
735 entropy->next_restart_num++; in encode_mcu_AC_first()
736 entropy->next_restart_num &= 7; in encode_mcu_AC_first()
766 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_DC_refine()
784 entropy->next_restart_num++; in encode_mcu_DC_refine()
[all …]
Djchuff.c118 int next_restart_num; /* next restart number to write (0-7) */ member
236 entropy->next_restart_num = 0; in start_pass_huff()
702 if (!emit_restart(&state, entropy->next_restart_num)) in encode_mcu_huff()
742 entropy->next_restart_num++; in encode_mcu_huff()
743 entropy->next_restart_num &= 7; in encode_mcu_huff()
Djdmarker.c374 cinfo->marker->next_restart_num = 0; in get_sos()
1137 ((int)M_RST0 + cinfo->marker->next_restart_num)) { in read_restart_marker()
1139 TRACEMS1(cinfo, 3, JTRC_RST, cinfo->marker->next_restart_num); in read_restart_marker()
1145 cinfo->marker->next_restart_num)) in read_restart_marker()
1150 cinfo->marker->next_restart_num = (cinfo->marker->next_restart_num + 1) & 7; in read_restart_marker()
Djpegint.h221 int next_restart_num; /* next restart number expected (0-7) */ member