Home
last modified time | relevance | path

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

/external/libjpeg-turbo/
Djcarith.c41 int next_restart_num; /* next restart number to write (0-7) */ member
377 emit_restart(cinfo, entropy->next_restart_num); in encode_mcu_DC_first()
379 entropy->next_restart_num++; in encode_mcu_DC_first()
380 entropy->next_restart_num &= 7; in encode_mcu_DC_first()
467 emit_restart(cinfo, entropy->next_restart_num); in encode_mcu_AC_first()
469 entropy->next_restart_num++; in encode_mcu_AC_first()
470 entropy->next_restart_num &= 7; in encode_mcu_AC_first()
564 emit_restart(cinfo, entropy->next_restart_num); in encode_mcu_DC_refine()
566 entropy->next_restart_num++; in encode_mcu_DC_refine()
567 entropy->next_restart_num &= 7; in encode_mcu_DC_refine()
[all …]
Djcphuff.c53 int next_restart_num; /* next restart number to write (0-7) */ member
191 entropy->next_restart_num = 0; in start_pass_phuff()
395 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_DC_first()
449 entropy->next_restart_num++; in encode_mcu_DC_first()
450 entropy->next_restart_num &= 7; in encode_mcu_DC_first()
481 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_AC_first()
555 entropy->next_restart_num++; in encode_mcu_AC_first()
556 entropy->next_restart_num &= 7; in encode_mcu_AC_first()
586 emit_restart(entropy, entropy->next_restart_num); in encode_mcu_DC_refine()
604 entropy->next_restart_num++; in encode_mcu_DC_refine()
[all …]
Djchuff.c102 int next_restart_num; /* next restart number to write (0-7) */ member
210 entropy->next_restart_num = 0; in start_pass_huff()
660 if (! emit_restart(&state, entropy->next_restart_num)) in encode_mcu_huff()
700 entropy->next_restart_num++; in encode_mcu_huff()
701 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