Home
last modified time | relevance | path

Searched refs:huffman_table (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/frontends/va/
Dpicture_mjpeg.c77 context->desc.mjpeg.huffman_table.load_huffman_table[i] = mjpeg->load_huffman_table[i]; in vlVaHandleHuffmanTableBufferType()
79 memcpy(&context->desc.mjpeg.huffman_table.table[i].num_dc_codes, in vlVaHandleHuffmanTableBufferType()
80 mjpeg->huffman_table[i].num_dc_codes, 16); in vlVaHandleHuffmanTableBufferType()
81 memcpy(&context->desc.mjpeg.huffman_table.table[i].dc_values, in vlVaHandleHuffmanTableBufferType()
82 mjpeg->huffman_table[i].dc_values, 12); in vlVaHandleHuffmanTableBufferType()
83 memcpy(&context->desc.mjpeg.huffman_table.table[i].num_ac_codes, in vlVaHandleHuffmanTableBufferType()
84 mjpeg->huffman_table[i].num_ac_codes, 16); in vlVaHandleHuffmanTableBufferType()
85 memcpy(&context->desc.mjpeg.huffman_table.table[i].ac_values, in vlVaHandleHuffmanTableBufferType()
86 mjpeg->huffman_table[i].ac_values, 162); in vlVaHandleHuffmanTableBufferType()
87 memcpy(&context->desc.mjpeg.huffman_table.table[i].pad, mjpeg->huffman_table[i].pad, 2); in vlVaHandleHuffmanTableBufferType()
[all …]
/external/puffin/
DMakefile11 huffman_table.cc \
DAndroid.bp54 "src/huffman_table.cc",
DBUILD.gn73 "src/huffman_table.cc",
/external/libxaac/decoder/
Dixheaacd_sbrdec_lpfuncs.c580 ia_huffman_data_type huffman_table, huffman_df_table, huffman_dt_table; in ixheaacd_read_ps_data() local
659 huffman_table = huffman_dt_table; in ixheaacd_read_ps_data()
661 huffman_table = huffman_df_table; in ixheaacd_read_ps_data()
666 ixheaacd_ssc_huff_dec(huffman_table, it_bit_buff); in ixheaacd_read_ps_data()
679 huffman_table = huffman_dt_table; in ixheaacd_read_ps_data()
681 huffman_table = huffman_df_table; in ixheaacd_read_ps_data()
686 ixheaacd_ssc_huff_dec(huffman_table, it_bit_buff); in ixheaacd_read_ps_data()
/external/mesa3d/src/gallium/drivers/r600/
Dradeon_uvd.c700 if (pic->huffman_table.load_huffman_table[i] == 0) in get_mjpeg_slice_header()
704 memcpy((buf + size), &pic->huffman_table.table[i].num_dc_codes, 16); in get_mjpeg_slice_header()
706 memcpy((buf + size), &pic->huffman_table.table[i].dc_values, 12); in get_mjpeg_slice_header()
711 if (pic->huffman_table.load_huffman_table[i] == 0) in get_mjpeg_slice_header()
715 memcpy((buf + size), &pic->huffman_table.table[i].num_ac_codes, 16); in get_mjpeg_slice_header()
717 memcpy((buf + size), &pic->huffman_table.table[i].ac_values, 162); in get_mjpeg_slice_header()
/external/webp/src/dec/
Dvp8l_dec.c366 HuffmanCode* huffman_table = NULL; in ReadHuffmanCodes() local
446 huffman_table = huffman_tables; in ReadHuffmanCodes()
471 htrees[j] = huffman_table; in ReadHuffmanCodes()
475 size = ReadHuffmanCode(alphabet_size, dec, code_lengths, huffman_table); in ReadHuffmanCodes()
480 is_trivial_literal = (huffman_table->bits == 0); in ReadHuffmanCodes()
482 total_size += huffman_table->bits; in ReadHuffmanCodes()
483 huffman_table += size; in ReadHuffmanCodes()
/external/mesa3d/src/gallium/include/pipe/
Dp_video_state.h669 } huffman_table; member