Home
last modified time | relevance | path

Searched refs:twelve_bit (Results 1 – 4 of 4) sorted by relevance

/external/libaom/libaom/common/
Dav1_config.c159 AV1C_READ_BIT_OR_RETURN_ERROR(twelve_bit); in parse_color_config()
160 config->twelve_bit = twelve_bit; in parse_color_config()
161 bit_depth = config->twelve_bit ? 12 : 10; in parse_color_config()
444 AV1C_READ_BIT_OR_RETURN_ERROR(twelve_bit); in read_av1config()
445 config->twelve_bit = twelve_bit; in read_av1config()
489 aom_wb_write_bit(&writer, config->twelve_bit); in write_av1config()
Dav1_config.h56 uint8_t twelve_bit; member
/external/libaom/libaom/test/
Dav1_config_test.cc61 EXPECT_EQ(0, av1_config.twelve_bit); in VerifyAv1c()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c3839 const int twelve_bit = aom_rb_read_bit(rb); in read_bitdepth() local
3840 seq_params->bit_depth = twelve_bit ? AOM_BITS_12 : AOM_BITS_10; in read_bitdepth()