Searched refs:color_config (Results 1 – 13 of 13) sorted by relevance
/external/libgav1/libgav1/src/ |
D | decoder_impl.cc | 862 ComposeImageFormat(sequence_header.color_config.is_monochrome, in ParseAndSchedule() 863 sequence_header.color_config.subsampling_x, in ParseAndSchedule() 864 sequence_header.color_config.subsampling_y); in ParseAndSchedule() 867 /*do_superres=*/true, sequence_header.color_config.subsampling_y); in ParseAndSchedule() 871 sequence_header.color_config.bitdepth, image_format, in ParseAndSchedule() 1059 ComposeImageFormat(sequence_header.color_config.is_monochrome, in DecodeTemporalUnit() 1060 sequence_header.color_config.subsampling_x, in DecodeTemporalUnit() 1061 sequence_header.color_config.subsampling_y); in DecodeTemporalUnit() 1064 /*do_superres=*/true, sequence_header.color_config.subsampling_y); in DecodeTemporalUnit() 1066 sequence_header.color_config.bitdepth, image_format, in DecodeTemporalUnit() [all …]
|
D | obu_parser.cc | 141 ColorConfig* const color_config = &sequence_header->color_config; in ParseColorConfig() local 147 color_config->bitdepth = is_twelve_bit ? 12 : 10; in ParseColorConfig() 149 color_config->bitdepth = high_bitdepth ? 10 : 8; in ParseColorConfig() 152 color_config->is_monochrome = false; in ParseColorConfig() 155 color_config->is_monochrome = static_cast<bool>(scratch); in ParseColorConfig() 161 color_config->color_primary = static_cast<ColorPrimary>(scratch); in ParseColorConfig() 163 color_config->transfer_characteristics = in ParseColorConfig() 166 color_config->matrix_coefficients = in ParseColorConfig() 169 color_config->color_primary = kColorPrimaryUnspecified; in ParseColorConfig() 170 color_config->transfer_characteristics = in ParseColorConfig() [all …]
|
D | tile.h | 585 return sequence_header_.color_config.is_monochrome ? kMaxPlanesMonochrome in PlaneCount() 774 (tile.sequence_header_.color_config.subsampling_y & height4x4) == 1) { in Block() 777 (tile.sequence_header_.color_config.subsampling_x & width4x4) == in Block() 781 has_chroma = !tile.sequence_header_.color_config.is_monochrome; in Block() 795 (tile.sequence_header_.color_config.subsampling_y & height4x4)); in Block() 805 (tile.sequence_header_.color_config.subsampling_x & width4x4)); in Block()
|
D | obu_parser.h | 178 ColorConfig color_config; member
|
/external/libgav1/libgav1/src/post_filter/ |
D | post_filter.cc | 154 bitdepth_(sequence_header.color_config.bitdepth), in PostFilter() 155 subsampling_x_{0, sequence_header.color_config.subsampling_x, in PostFilter() 156 sequence_header.color_config.subsampling_x}, in PostFilter() 157 subsampling_y_{0, sequence_header.color_config.subsampling_y, 158 sequence_header.color_config.subsampling_y}, 159 planes_(sequence_header.color_config.is_monochrome ? kMaxPlanesMonochrome 175 [(sequence_header.color_config.is_monochrome || 176 sequence_header.color_config.subsampling_x == 0)
|
/external/libgav1/libgav1/src/tile/bitstream/ |
D | palette.cc | 66 const int8_t bitdepth = sequence_header_.color_config.bitdepth; in ReadPaletteColors() 262 block_height >>= sequence_header_.color_config.subsampling_y; in ReadPaletteTokens() 263 block_width >>= sequence_header_.color_config.subsampling_x; in ReadPaletteTokens() 264 screen_height >>= sequence_header_.color_config.subsampling_y; in ReadPaletteTokens() 265 screen_width >>= sequence_header_.color_config.subsampling_x; in ReadPaletteTokens()
|
/external/python/cpython3/Lib/idlelib/ |
D | textview.py | 9 from idlelib.colorizer import color_config 92 color_config(text)
|
D | colorizer.py | 34 def color_config(text): function 325 color_config(text)
|
D | editor.py | 51 from idlelib.colorizer import ColorDelegator, color_config 801 EditorWindow.color_config(self.text)
|
/external/libgav1/libgav1/src/tile/ |
D | tile.cc | 435 subsampling_x_{0, sequence_header.color_config.subsampling_x, in Tile() 436 sequence_header.color_config.subsampling_x}, in Tile() 437 subsampling_y_{0, sequence_header.color_config.subsampling_y, 438 sequence_header.color_config.subsampling_y}, 455 quantizer_(sequence_header_.color_config.bitdepth, 457 residual_size_((sequence_header_.color_config.bitdepth == 8) 918 (sequence_header_.color_config.bitdepth == 8 ? sizeof(uint8_t) in PopulateIntraPredictionBuffer() 931 if (sequence_header_.color_config.bitdepth > 8) { in PopulateIntraPredictionBuffer() 1502 const int max_value = (1 << (7 + sequence_header_.color_config.bitdepth)) - 1; in ReadTransformCoefficients() 1556 if (sequence_header_.color_config.bitdepth > 8) { \ [all …]
|
D | prediction.cc | 250 const int bitdepth = sequence_header_.color_config.bitdepth; in IntraPrediction() 596 if (sequence_header_.color_config.bitdepth > 8) { in InterIntraPrediction() 630 const int bitdepth = sequence_header_.color_config.bitdepth; in CompoundInterPrediction() 712 const int bitdepth = sequence_header_.color_config.bitdepth; in InterPrediction() 820 const int bitdepth = sequence_header_.color_config.bitdepth; in ObmcBlockPrediction() 1151 const int bitdepth = sequence_header_.color_config.bitdepth; in BlockInterPrediction() 1252 if (is_inter_intra && sequence_header_.color_config.bitdepth > 8) { in BlockInterPrediction() 1348 if (is_inter_intra && sequence_header_.color_config.bitdepth > 8) { in BlockWarpProcess()
|
/external/python/cpython3/Lib/turtledemo/ |
D | __main__.py | 92 from idlelib.colorizer import ColorDelegator, color_config 208 color_config(text)
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_colorizer.py | 93 colorizer.color_config(text)
|