Home
last modified time | relevance | path

Searched refs:htblptr (Results 1 – 3 of 3) sorted by relevance

/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Djcparam.c170 JHUFF_TBL **htblptr, const UINT8 *bits, const UINT8 *val) in add_huff_table() argument
175 if (*htblptr == NULL) in add_huff_table()
176 *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo); in add_huff_table()
179 MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits)); in add_huff_table()
191 MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8)); in add_huff_table()
194 (*htblptr)->sent_table = FALSE; in add_huff_table()
A Djchuff.c1399 JHUFF_TBL **htblptr; in finish_pass_gather() local
1419 htblptr = & cinfo->dc_huff_tbl_ptrs[tbl]; in finish_pass_gather()
1420 if (*htblptr == NULL) in finish_pass_gather()
1421 *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo); in finish_pass_gather()
1422 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->dc_count_ptrs[tbl]); in finish_pass_gather()
1430 htblptr = & cinfo->ac_huff_tbl_ptrs[tbl]; in finish_pass_gather()
1431 if (*htblptr == NULL) in finish_pass_gather()
1432 *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo); in finish_pass_gather()
1433 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->ac_count_ptrs[tbl]); in finish_pass_gather()
A Djdmarker.c466 JHUFF_TBL **htblptr; in get_dht() local
508 htblptr = &cinfo->ac_huff_tbl_ptrs[index]; in get_dht()
510 htblptr = &cinfo->dc_huff_tbl_ptrs[index]; in get_dht()
516 if (*htblptr == NULL) in get_dht()
517 *htblptr = jpeg_alloc_huff_table((j_common_ptr) cinfo); in get_dht()
519 MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits)); in get_dht()
520 MEMCOPY((*htblptr)->huffval, huffval, SIZEOF((*htblptr)->huffval)); in get_dht()

Completed in 7 milliseconds