Home
last modified time | relevance | path

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

12

/aosp_15_r20/external/libwebm/webm_parser/tests/
H A Dcolour_parser_test.cc38 EXPECT_FALSE(colour.bits_per_channel.is_present()); in TEST_F()
39 EXPECT_EQ(static_cast<std::uint64_t>(0), colour.bits_per_channel.value()); in TEST_F()
132 EXPECT_TRUE(colour.bits_per_channel.is_present()); in TEST_F()
133 EXPECT_EQ(static_cast<std::uint64_t>(0), colour.bits_per_channel.value()); in TEST_F()
242 EXPECT_TRUE(colour.bits_per_channel.is_present()); in TEST_F()
243 EXPECT_EQ(static_cast<std::uint64_t>(2), colour.bits_per_channel.value()); in TEST_F()
H A Dvideo_parser_test.cc309 EXPECT_TRUE(video.colour.value().bits_per_channel.is_present()); in TEST_F()
311 video.colour.value().bits_per_channel.value()); in TEST_F()
/aosp_15_r20/external/libwebm/common/
H A Dhdr_util.cc80 if (ColourValuePresent(parser_colour.bits_per_channel)) in CopyColour()
81 muxer_colour->set_bits_per_channel(parser_colour.bits_per_channel); in CopyColour()
/aosp_15_r20/external/libvpx/third_party/libwebm/common/
H A Dhdr_util.cc80 if (ColourValuePresent(parser_colour.bits_per_channel)) in CopyColour()
81 muxer_colour->set_bits_per_channel(parser_colour.bits_per_channel); in CopyColour()
/aosp_15_r20/external/libaom/third_party/libwebm/common/
H A Dhdr_util.cc80 if (ColourValuePresent(parser_colour.bits_per_channel)) in CopyColour()
81 muxer_colour->set_bits_per_channel(parser_colour.bits_per_channel); in CopyColour()
/aosp_15_r20/external/libwebm/webm_parser/include/webm/
H A Ddom_types.h815 Element<std::uint64_t> bits_per_channel{0};
883 bits_per_channel == other.bits_per_channel &&
/aosp_15_r20/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dstb_image.h900 int bits_per_channel; member
1120 ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed in stbi__load_main()
1249 STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); in stbi__load_and_postprocess_8bit()
1251 if (ri.bits_per_channel != 8) { in stbi__load_and_postprocess_8bit()
1253 ri.bits_per_channel = 8; in stbi__load_and_postprocess_8bit()
1275 STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); in stbi__load_and_postprocess_16bit()
1277 if (ri.bits_per_channel != 16) { in stbi__load_and_postprocess_16bit()
1279 ri.bits_per_channel = 16; in stbi__load_and_postprocess_16bit()
5198 ri->bits_per_channel = 8; in stbi__do_png()
5200 ri->bits_per_channel = 16; in stbi__do_png()
[all …]
/aosp_15_r20/hardware/google/gfxstream/third-party/stb/include/stb/
Dstb_image.h900 int bits_per_channel; member
1120 ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed in stbi__load_main()
1249 STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); in stbi__load_and_postprocess_8bit()
1251 if (ri.bits_per_channel != 8) { in stbi__load_and_postprocess_8bit()
1253 ri.bits_per_channel = 8; in stbi__load_and_postprocess_8bit()
1275 STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); in stbi__load_and_postprocess_16bit()
1277 if (ri.bits_per_channel != 16) { in stbi__load_and_postprocess_16bit()
1279 ri.bits_per_channel = 16; in stbi__load_and_postprocess_16bit()
5205 ri->bits_per_channel = 8; in stbi__do_png()
5207 ri->bits_per_channel = 16; in stbi__do_png()
[all …]
/aosp_15_r20/external/libwebm/
H A Dmkvparser_sample.cc244 if (ColourValuePresent(colour->bits_per_channel)) in main()
245 printf("\t\t\tBitsPerChannel: %lld\n", colour->bits_per_channel); in main()
H A Dwebm_info.cc511 const int64_t bits_per_channel = colour->bits_per_channel; in OutputTracks() local
527 if (bits_per_channel != mkvparser::Colour::kValueNotPresent) in OutputTracks()
529 indent->indent_str().c_str(), bits_per_channel); in OutputTracks()
/aosp_15_r20/external/libwebm/webm_parser/src/
H A Dcolour_parser.h29 &Colour::bits_per_channel), in ColourParser()
/aosp_15_r20/external/libwebm/mkvmuxer/
H A Dmkvmuxer.h539 uint64_t bits_per_channel() const { return bits_per_channel_; } in bits_per_channel() function
540 void set_bits_per_channel(uint64_t bits_per_channel) { in set_bits_per_channel() argument
541 bits_per_channel_ = bits_per_channel; in set_bits_per_channel()
/aosp_15_r20/external/libvpx/third_party/libwebm/mkvmuxer/
H A Dmkvmuxer.h539 uint64_t bits_per_channel() const { return bits_per_channel_; } in bits_per_channel() function
540 void set_bits_per_channel(uint64_t bits_per_channel) { in set_bits_per_channel() argument
541 bits_per_channel_ = bits_per_channel; in set_bits_per_channel()
/aosp_15_r20/external/libaom/third_party/libwebm/mkvmuxer/
H A Dmkvmuxer.h539 uint64_t bits_per_channel() const { return bits_per_channel_; } in bits_per_channel() function
540 void set_bits_per_channel(uint64_t bits_per_channel) { in set_bits_per_channel() argument
541 bits_per_channel_ = bits_per_channel; in set_bits_per_channel()
/aosp_15_r20/external/armnn/third-party/stb/
H A Dstb_image.h777 int bits_per_channel; member
964 ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed in stbi__load_main()
1070 if (ri.bits_per_channel != 8) { in stbi__load_and_postprocess_8bit()
1071 STBI_ASSERT(ri.bits_per_channel == 16); in stbi__load_and_postprocess_8bit()
1073 ri.bits_per_channel = 8; in stbi__load_and_postprocess_8bit()
1094 if (ri.bits_per_channel != 16) { in stbi__load_and_postprocess_16bit()
1095 STBI_ASSERT(ri.bits_per_channel == 8); in stbi__load_and_postprocess_16bit()
1097 ri.bits_per_channel = 16; in stbi__load_and_postprocess_16bit()
4863 ri->bits_per_channel = 8; in stbi__do_png()
4865 ri->bits_per_channel = p->depth; in stbi__do_png()
[all …]
/aosp_15_r20/external/ComputeLibrary/include/stb/
H A Dstb_image.h781 int bits_per_channel; member
975 ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed in stbi__load_main()
1093 if (ri.bits_per_channel != 8) { in stbi__load_and_postprocess_8bit()
1094 STBI_ASSERT(ri.bits_per_channel == 16); in stbi__load_and_postprocess_8bit()
1096 ri.bits_per_channel = 8; in stbi__load_and_postprocess_8bit()
1117 if (ri.bits_per_channel != 16) { in stbi__load_and_postprocess_16bit()
1118 STBI_ASSERT(ri.bits_per_channel == 8); in stbi__load_and_postprocess_16bit()
1120 ri.bits_per_channel = 16; in stbi__load_and_postprocess_16bit()
4909 ri->bits_per_channel = 8; in stbi__do_png()
4911 ri->bits_per_channel = p->depth; in stbi__do_png()
[all …]
/aosp_15_r20/external/libwebm/mkvparser/
H A Dmkvparser.h438 bits_per_channel(kValueNotPresent), in Colour()
460 long long bits_per_channel; member
H A Dmkvparser.cc5156 colour_ptr->bits_per_channel = in Parse()
5158 if (colour_ptr->bits_per_channel < 0) in Parse()
/aosp_15_r20/external/libaom/third_party/libwebm/mkvparser/
H A Dmkvparser.h438 bits_per_channel(kValueNotPresent), in Colour()
460 long long bits_per_channel; member
H A Dmkvparser.cc5157 colour_ptr->bits_per_channel = in Parse()
5159 if (colour_ptr->bits_per_channel < 0) in Parse()
/aosp_15_r20/external/libvpx/third_party/libwebm/mkvparser/
H A Dmkvparser.h438 bits_per_channel(kValueNotPresent), in Colour()
460 long long bits_per_channel; member
H A Dmkvparser.cc5157 colour_ptr->bits_per_channel = in Parse()
5159 if (colour_ptr->bits_per_channel < 0) in Parse()
/aosp_15_r20/external/libwebm/testing/
H A Dmkvmuxer_tests.cc836 EXPECT_EQ(static_cast<long long>(muxer_colour.bits_per_channel()), in TEST_F()
837 parser_colour->bits_per_channel); in TEST_F()
H A Dmkvparser_tests.cc619 EXPECT_EQ(1u, colour->bits_per_channel); in TEST_F()
/aosp_15_r20/external/libwebm/webm_parser/demo/
H A Ddemo.cc717 PrintOptionalElement("BitsPerChannel", colour.bits_per_channel); in PrintMasterElement()

12