Home
last modified time | relevance | path

Searched refs:desired_channel_bits (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/lib/png/
Dpng_io.cc200 int desired_channel_bits, DecodeContext* context) { in CommonInitDecode() argument
201 CHECK(desired_channel_bits == 8 || desired_channel_bits == 16) in CommonInitDecode()
202 << "desired_channel_bits = " << desired_channel_bits; in CommonInitDecode()
270 if (context->bit_depth > 8 && desired_channel_bits <= 8) in CommonInitDecode()
274 (context->bit_depth <= 8 && desired_channel_bits == 16); in CommonInitDecode()
279 if (desired_channel_bits > 8 && port::kLittleEndian) { in CommonInitDecode()
Dpng_io.h78 int desired_channel_bits, DecodeContext* context);