/external/libaom/libaom/common/ |
D | rawenc.c | 41 static void write_greyscale(const bool high_bitdepth, int n, WRITER writer_func, in write_greyscale() argument 44 if (high_bitdepth) { in write_greyscale() 48 high_bitdepth ? n / (BATCH_SIZE / 2) : n / BATCH_SIZE; in write_greyscale() 52 const int remaining = high_bitdepth ? n % (BATCH_SIZE / 2) : n % BATCH_SIZE; in write_greyscale() 54 if (high_bitdepth) { in write_greyscale() 67 const bool high_bitdepth = img->fmt & AOM_IMG_FMT_HIGHBITDEPTH; in raw_write_image_file_or_md5() local 68 const int bytes_per_sample = high_bitdepth ? 2 : 1; in raw_write_image_file_or_md5() 76 write_greyscale(high_bitdepth, w * h, writer_func, file_or_md5); in raw_write_image_file_or_md5()
|
D | av1_config.c | 154 AV1C_READ_BIT_OR_RETURN_ERROR(high_bitdepth); in parse_color_config() 155 config->high_bitdepth = high_bitdepth; in parse_color_config() 158 if (config->seq_profile == 2 && config->high_bitdepth) { in parse_color_config() 163 bit_depth = config->high_bitdepth ? 10 : 8; in parse_color_config() 441 AV1C_READ_BIT_OR_RETURN_ERROR(high_bitdepth); in read_av1config() 442 config->high_bitdepth = high_bitdepth; in read_av1config() 488 aom_wb_write_bit(&writer, config->high_bitdepth); in write_av1config()
|
D | av1_config.h | 55 uint8_t high_bitdepth; member
|
/external/libgav1/libgav1/src/dsp/x86/ |
D | super_res_sse4.cc | 172 namespace high_bitdepth { namespace 303 high_bitdepth::Init10bpp(); in SuperResInit_SSE4_1()
|
D | average_blend_sse4.cc | 145 namespace high_bitdepth { namespace 360 high_bitdepth::Init10bpp(); in AverageBlendInit_SSE4_1()
|
D | distance_weighted_blend_sse4.cc | 219 namespace high_bitdepth { namespace 433 high_bitdepth::Init10bpp(); in DistanceWeightedBlendInit_SSE4_1()
|
D | film_grain_sse4.cc | 476 namespace high_bitdepth { namespace 498 film_grain::high_bitdepth::Init10bpp(); in FilmGrainInit_SSE4_1()
|
D | obmc_sse4.cc | 318 namespace high_bitdepth { namespace 596 high_bitdepth::Init10bpp(); in ObmcInit_SSE4_1()
|
D | weight_mask_sse4.cc | 463 namespace high_bitdepth { namespace 939 high_bitdepth::Init10bpp(); in WeightMaskInit_SSE4_1()
|
D | mask_blend_sse4.cc | 434 namespace high_bitdepth { namespace 934 high_bitdepth::Init10bpp(); in MaskBlendInit_SSE4_1()
|
D | intrapred_directional_sse4.cc | 1085 namespace high_bitdepth { namespace 1463 high_bitdepth::Init10bpp(); in IntraPredDirectionalInit_SSE4_1()
|
D | intrapred_cfl_sse4.cc | 950 namespace high_bitdepth { namespace 1822 high_bitdepth::Init10bpp(); in IntraPredCflInit_SSE4_1()
|
D | intrapred_sse4.cc | 1803 namespace high_bitdepth { namespace 2171 high_bitdepth::Init10bpp(); in IntraPredInit_SSE4_1()
|
D | loop_filter_sse4.cc | 1135 namespace high_bitdepth { namespace 2237 high_bitdepth::Init10bpp(); in LoopFilterInit_SSE4_1()
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | average_blend_neon.cc | 139 namespace high_bitdepth { namespace 261 high_bitdepth::Init10bpp(); in AverageBlendInit_NEON()
|
D | super_res_neon.cc | 154 namespace high_bitdepth { namespace 286 high_bitdepth::Init10bpp(); in SuperResInit_NEON()
|
D | distance_weighted_blend_neon.cc | 194 namespace high_bitdepth { namespace 343 high_bitdepth::Init10bpp(); in DistanceWeightedBlendInit_NEON()
|
D | intra_edge_neon.cc | 300 namespace high_bitdepth { namespace 507 high_bitdepth::Init10bpp(); in IntraEdgeInit_NEON()
|
D | film_grain_neon.cc | 1121 namespace high_bitdepth { namespace 1172 film_grain::high_bitdepth::Init10bpp(); in FilmGrainInit_NEON()
|
D | intrapred_directional_neon.cc | 914 namespace high_bitdepth { namespace 1489 high_bitdepth::Init10bpp(); in IntraPredDirectionalInit_NEON()
|
D | intrapred_cfl_neon.cc | 450 namespace high_bitdepth { namespace 1308 high_bitdepth::Init10bpp(); in IntraPredCflInit_NEON()
|
D | intrapred_neon.cc | 727 namespace high_bitdepth { namespace 1374 high_bitdepth::Init10bpp(); in IntraPredInit_NEON()
|
/external/libaom/libaom/test/ |
D | av1_config_test.cc | 60 EXPECT_EQ(0, av1_config.high_bitdepth); in VerifyAv1c()
|
/external/libgav1/libgav1/src/ |
D | obu_parser.cc | 143 const auto high_bitdepth = static_cast<bool>(scratch); in ParseColorConfig() local 144 if (sequence_header->profile == kProfile2 && high_bitdepth) { in ParseColorConfig() 149 color_config->bitdepth = high_bitdepth ? 10 : 8; in ParseColorConfig()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 3837 const int high_bitdepth = aom_rb_read_bit(rb); in read_bitdepth() local 3838 if (seq_params->profile == PROFILE_2 && high_bitdepth) { in read_bitdepth() 3842 seq_params->bit_depth = high_bitdepth ? AOM_BITS_10 : AOM_BITS_8; in read_bitdepth()
|