Searched refs:huffman_table (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/gallium/frontends/va/ |
D | picture_mjpeg.c | 77 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/ |
D | Makefile | 11 huffman_table.cc \
|
D | Android.bp | 37 "src/huffman_table.cc",
|
D | BUILD.gn | 73 "src/huffman_table.cc",
|
/external/libxaac/decoder/ |
D | ixheaacd_sbrdec_lpfuncs.c | 580 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/ |
D | radeon_uvd.c | 700 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/ |
D | vp8l_dec.c | 366 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/ |
D | p_video_state.h | 669 } huffman_table; member
|