Home
last modified time | relevance | path

Searched refs:high_bitdepth (Results 1 – 25 of 25) sorted by relevance

/external/libaom/libaom/common/
Drawenc.c41 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()
Dav1_config.c154 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()
Dav1_config.h55 uint8_t high_bitdepth; member
/external/libgav1/libgav1/src/dsp/x86/
Dsuper_res_sse4.cc172 namespace high_bitdepth { namespace
303 high_bitdepth::Init10bpp(); in SuperResInit_SSE4_1()
Daverage_blend_sse4.cc145 namespace high_bitdepth { namespace
360 high_bitdepth::Init10bpp(); in AverageBlendInit_SSE4_1()
Ddistance_weighted_blend_sse4.cc219 namespace high_bitdepth { namespace
433 high_bitdepth::Init10bpp(); in DistanceWeightedBlendInit_SSE4_1()
Dfilm_grain_sse4.cc476 namespace high_bitdepth { namespace
498 film_grain::high_bitdepth::Init10bpp(); in FilmGrainInit_SSE4_1()
Dobmc_sse4.cc318 namespace high_bitdepth { namespace
596 high_bitdepth::Init10bpp(); in ObmcInit_SSE4_1()
Dweight_mask_sse4.cc463 namespace high_bitdepth { namespace
939 high_bitdepth::Init10bpp(); in WeightMaskInit_SSE4_1()
Dmask_blend_sse4.cc434 namespace high_bitdepth { namespace
934 high_bitdepth::Init10bpp(); in MaskBlendInit_SSE4_1()
Dintrapred_directional_sse4.cc1085 namespace high_bitdepth { namespace
1463 high_bitdepth::Init10bpp(); in IntraPredDirectionalInit_SSE4_1()
Dintrapred_cfl_sse4.cc950 namespace high_bitdepth { namespace
1822 high_bitdepth::Init10bpp(); in IntraPredCflInit_SSE4_1()
Dintrapred_sse4.cc1803 namespace high_bitdepth { namespace
2171 high_bitdepth::Init10bpp(); in IntraPredInit_SSE4_1()
Dloop_filter_sse4.cc1135 namespace high_bitdepth { namespace
2237 high_bitdepth::Init10bpp(); in LoopFilterInit_SSE4_1()
/external/libgav1/libgav1/src/dsp/arm/
Daverage_blend_neon.cc139 namespace high_bitdepth { namespace
261 high_bitdepth::Init10bpp(); in AverageBlendInit_NEON()
Dsuper_res_neon.cc154 namespace high_bitdepth { namespace
286 high_bitdepth::Init10bpp(); in SuperResInit_NEON()
Ddistance_weighted_blend_neon.cc194 namespace high_bitdepth { namespace
343 high_bitdepth::Init10bpp(); in DistanceWeightedBlendInit_NEON()
Dintra_edge_neon.cc300 namespace high_bitdepth { namespace
507 high_bitdepth::Init10bpp(); in IntraEdgeInit_NEON()
Dfilm_grain_neon.cc1121 namespace high_bitdepth { namespace
1172 film_grain::high_bitdepth::Init10bpp(); in FilmGrainInit_NEON()
Dintrapred_directional_neon.cc914 namespace high_bitdepth { namespace
1489 high_bitdepth::Init10bpp(); in IntraPredDirectionalInit_NEON()
Dintrapred_cfl_neon.cc450 namespace high_bitdepth { namespace
1308 high_bitdepth::Init10bpp(); in IntraPredCflInit_NEON()
Dintrapred_neon.cc727 namespace high_bitdepth { namespace
1374 high_bitdepth::Init10bpp(); in IntraPredInit_NEON()
/external/libaom/libaom/test/
Dav1_config_test.cc60 EXPECT_EQ(0, av1_config.high_bitdepth); in VerifyAv1c()
/external/libgav1/libgav1/src/
Dobu_parser.cc143 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/
Ddecodeframe.c3837 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()