/external/libgav1/libgav1/src/utils/ |
D | entropy_decoder.h | 45 int ReadSymbol(uint16_t* cdf, int symbol_count); 48 bool ReadSymbol(uint16_t* cdf); 54 int ReadSymbol(uint16_t* cdf); 107 extern template int DaalaBitReader::ReadSymbol<3>(uint16_t* cdf); 108 extern template int DaalaBitReader::ReadSymbol<4>(uint16_t* cdf); 109 extern template int DaalaBitReader::ReadSymbol<5>(uint16_t* cdf); 110 extern template int DaalaBitReader::ReadSymbol<6>(uint16_t* cdf); 111 extern template int DaalaBitReader::ReadSymbol<7>(uint16_t* cdf); 112 extern template int DaalaBitReader::ReadSymbol<8>(uint16_t* cdf); 113 extern template int DaalaBitReader::ReadSymbol<9>(uint16_t* cdf); [all …]
|
D | entropy_decoder.cc | 646 int DaalaBitReader::ReadSymbol(uint16_t* const cdf, int symbol_count) { in ReadSymbol() function in libgav1::DaalaBitReader 654 bool DaalaBitReader::ReadSymbol(uint16_t* cdf) { in ReadSymbol() function in libgav1::DaalaBitReader 689 int DaalaBitReader::ReadSymbol(uint16_t* const cdf) { in ReadSymbol() function in libgav1::DaalaBitReader 1103 template int DaalaBitReader::ReadSymbol<3>(uint16_t* cdf); 1104 template int DaalaBitReader::ReadSymbol<4>(uint16_t* cdf); 1105 template int DaalaBitReader::ReadSymbol<5>(uint16_t* cdf); 1106 template int DaalaBitReader::ReadSymbol<6>(uint16_t* cdf); 1107 template int DaalaBitReader::ReadSymbol<7>(uint16_t* cdf); 1108 template int DaalaBitReader::ReadSymbol<8>(uint16_t* cdf); 1109 template int DaalaBitReader::ReadSymbol<9>(uint16_t* cdf); [all …]
|
/external/libgav1/libgav1/src/tile/bitstream/ |
D | mode_info.cc | 226 reader_.ReadSymbol<kMaxSegments>(segment_id_cdf); in ReadSegmentId() 268 bp.skip = reader_.ReadSymbol(skip_cdf); in ReadSkip() 291 reader_.ReadSymbol(symbol_decoder_context_.skip_mode_cdf[context]); in ReadSkipMode() 322 int abs = reader_.ReadSymbol<kDeltaSymbolCount>(cdf); in ReadAndClipDelta() 399 reader_.ReadSymbol<kIntraPredictionModesY>(cdf)); in ReadPredictionModeY() 413 reader_.ReadSymbol<kAngleDeltaSymbolCount>(cdf); in ReadIntraAngleInfo() 418 const int signs = reader_.ReadSymbol<kCflAlphaSignsSymbolCount>( in ReadCflAlpha() 429 reader_.ReadSymbol<kCflAlphaSymbolCount>( in ReadCflAlpha() 438 reader_.ReadSymbol<kCflAlphaSymbolCount>( in ReadCflAlpha() 458 reader_.ReadSymbol<kIntraPredictionModesUV>(cdf)); in ReadPredictionModeUV() [all …]
|
D | partition.cc | 125 reader_.ReadSymbol<kPartitionSplit + 1>(partition_cdf)); in ReadPartition() 128 reader_.ReadSymbol<kPartitionVerticalWithRightSplit + 1>( in ReadPartition() 132 reader_.ReadSymbol<kMaxPartitionTypes>(partition_cdf)); in ReadPartition()
|
D | palette.cc | 149 const bool has_palette_y = reader_.ReadSymbol( in ReadPaletteModeInfo() 154 reader_.ReadSymbol<kPaletteSizeSymbolCount>( in ReadPaletteModeInfo() 163 reader_.ReadSymbol(symbol_decoder_context_.has_palette_uv_cdf[context]); in ReadPaletteModeInfo() 167 reader_.ReadSymbol<kPaletteSizeSymbolCount>( in ReadPaletteModeInfo() 295 const int color_order_index = reader_.ReadSymbol(cdf, palette_size); in ReadPaletteTokens()
|
D | transform_size.cc | 123 ? static_cast<int>(reader_.ReadSymbol(cdf)) in ReadFixedTransformSize() 124 : reader_.ReadSymbol<3>(cdf); in ReadFixedTransformSize() 165 if (reader_.ReadSymbol(symbol_decoder_context_.tx_split_cdf[context])) { in ReadVariableTransformTree()
|
/external/libgav1/libgav1/src/ |
D | loop_restoration_info.cc | 143 [reader->ReadSymbol<kRestorationTypeSymbolCount>( in ReadUnitCoefficients() 147 reader->ReadSymbol(symbol_decoder_context->use_wiener_cdf); in ReadUnitCoefficients() 151 reader->ReadSymbol(symbol_decoder_context->use_sgrproj_cdf); in ReadUnitCoefficients()
|
/external/libgav1/libgav1/src/tile/ |
D | tile.cc | 1061 tx_type = static_cast<TransformType>(reader_.ReadSymbol<16>(cdf)); in ReadTransformType() 1064 tx_type = static_cast<TransformType>(reader_.ReadSymbol<12>(cdf)); in ReadTransformType() 1068 tx_type = static_cast<TransformType>(reader_.ReadSymbol(cdf)); in ReadTransformType() 1082 ? reader_.ReadSymbol<7>(cdf) in ReadTransformType() 1083 : reader_.ReadSymbol<5>(cdf)); in ReadTransformType() 1123 reader_.ReadSymbol<kCoeffBaseSymbolCount>(coeff_base_cdf[context]); in ReadCoeffBase2D() 1140 int level = reader_.ReadSymbol<kCoeffBaseSymbolCount>(coeff_base_cdf[0]); in ReadCoeffBase2D() 1192 reader_.ReadSymbol<kCoeffBaseSymbolCount>(coeff_base_cdf[context]); in ReadCoeffBaseHorizontal() 1238 reader_.ReadSymbol<kCoeffBaseSymbolCount>(coeff_base_cdf[context]); in ReadCoeffBaseVertical() 1306 ? static_cast<int>(reader_.ReadSymbol(dc_sign_cdf)) in ReadSignAndApplyDequantization() [all …]
|
/external/brotli/csharp/org/brotli/dec/ |
D | Decode.cs | 115 private static int ReadSymbol(int[] table, int offset, Org.Brotli.Dec.BitReader br) in ReadSymbol() method in Org.Brotli.Dec.Decode 136 int code = ReadSymbol(table, offset, br); in ReadBlockLength() 370 int code = ReadSymbol(table, 0, br); in DecodeContextMap() 410 …int blockType = ReadSymbol(state.blockTypeTrees, treeType * Org.Brotli.Dec.Huffman.HuffmanMaxTable… in DecodeBlockTypeAndLength() 714 int cmdCode = ReadSymbol(state.hGroup1.codes, state.treeCommandOffset, br); in Decompress() 745 … ringBuffer[state.pos] = unchecked((byte)ReadSymbol(state.hGroup0.codes, state.literalTree, br)); in Decompress() 772 prevByte1 = ReadSymbol(state.hGroup0.codes, state.hGroup0.trees[literalTreeIndex], br); in Decompress() 804 …state.distanceCode = ReadSymbol(state.hGroup2.codes, state.hGroup2.trees[state.distContextMap[stat… in Decompress()
|
/external/webp/src/dec/ |
D | vp8l_dec.c | 183 static WEBP_INLINE int ReadSymbol(const HuffmanCode* table, in ReadSymbol() function 1030 code = ReadSymbol(htree_group->htrees[GREEN], br); in DecodeAlphaData() 1046 const int dist_symbol = ReadSymbol(htree_group->htrees[DIST], br); in DecodeAlphaData() 1154 code = ReadSymbol(htree_group->htrees[GREEN], br); in DecodeImageData() 1162 red = ReadSymbol(htree_group->htrees[RED], br); in DecodeImageData() 1164 blue = ReadSymbol(htree_group->htrees[BLUE], br); in DecodeImageData() 1165 alpha = ReadSymbol(htree_group->htrees[ALPHA], br); in DecodeImageData() 1190 const int dist_symbol = ReadSymbol(htree_group->htrees[DIST], br); in DecodeImageData()
|
/external/brotli/c/dec/ |
D | decode.c | 368 static BROTLI_INLINE uint32_t ReadSymbol(const HuffmanCode* table, in ReadSymbol() function 877 code = ReadSymbol(table, br); in ReadBlockLength() 1136 block_type = ReadSymbol(type_tree, br); in DecodeBlockTypeAndLength() 1626 code = ReadSymbol(distance_tree, br); in ReadDistanceInternal() 1674 cmd_code = ReadSymbol(s->htree_command, br); in ReadCommandInternal() 1844 p1 = (uint8_t)ReadSymbol(hc, br); in ProcessCommandsInternal()
|