Searched refs:interlaced (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/libs/gralloc/types/ |
D | Gralloc4.cpp | 1051 status_t encodeInterlaced(const ExtendableType& interlaced, hidl_vec<uint8_t>* outInterlaced) { in encodeInterlaced() argument 1052 return encodeMetadata(MetadataType_Interlaced, interlaced, outInterlaced, encodeExtendableType); in encodeInterlaced() 1055 status_t decodeInterlaced(const hidl_vec<uint8_t>& interlaced, ExtendableType* outInterlaced) { in decodeInterlaced() argument 1056 return decodeMetadata(MetadataType_Interlaced, interlaced, outInterlaced, decodeExtendableType, in decodeInterlaced() 1229 bool isStandardInterlaced(const ExtendableType& interlaced) { in isStandardInterlaced() argument 1230 return !std::strncmp(interlaced.name.c_str(), GRALLOC4_STANDARD_INTERLACED, in isStandardInterlaced() 1231 interlaced.name.size()); in isStandardInterlaced() 1252 Interlaced getStandardInterlacedValue(const ExtendableType& interlaced) { in getStandardInterlacedValue() argument 1253 return static_cast<Interlaced>(interlaced.value); in getStandardInterlacedValue() 1279 std::string getInterlacedName(const ExtendableType& interlaced) { in getInterlacedName() argument [all …]
|
/frameworks/native/libs/ui/ |
D | Gralloc4.cpp | 650 ExtendableType interlaced; in getInterlaced() local 651 status_t error = getInterlaced(bufferHandle, &interlaced); in getInterlaced() 655 if (!gralloc4::isStandardInterlaced(interlaced)) { in getInterlaced() 658 *outInterlaced = gralloc4::getStandardInterlacedValue(interlaced); in getInterlaced() 878 ExtendableType interlaced; in getDefaultInterlaced() local 879 status_t error = getDefaultInterlaced(width, height, format, layerCount, usage, &interlaced); in getDefaultInterlaced() 883 if (!gralloc4::isStandardInterlaced(interlaced)) { in getDefaultInterlaced() 886 *outInterlaced = gralloc4::getStandardInterlacedValue(interlaced); in getDefaultInterlaced() 982 ExtendableType interlaced; in bufferDumpHelper() local 1051 gralloc4::decodeInterlaced, &interlaced); in bufferDumpHelper() [all …]
|
/frameworks/native/libs/gralloc/types/include/gralloctypes/ |
D | Gralloc4.h | 299 …laced(const aidl::android::hardware::graphics::common::ExtendableType& interlaced, android::hardwa… 300 status_t decodeInterlaced(const android::hardware::hidl_vec<uint8_t>& interlaced, aidl::android::ha… 401 const aidl::android::hardware::graphics::common::ExtendableType& interlaced); 412 const aidl::android::hardware::graphics::common::ExtendableType& interlaced); 425 const aidl::android::hardware::graphics::common::ExtendableType& interlaced);
|
/frameworks/native/libs/gralloc/types/tests/ |
D | Gralloc4_test.cpp | 557 ExtendableType compression, interlaced, chromaSiting; in TEST_F() local 577 ASSERT_NE(NO_ERROR, gralloc4::decodeInterlaced(vec, &interlaced)); in TEST_F()
|