Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/
H A DHeifDecoder.h66 enum class HeifImageHdrType { enum
100 virtual HeifImageHdrType getHdrType() = 0;
H A DHeifDecoderImpl.h62 HeifImageHdrType getHdrType() override;
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/
H A DHeifDecoderImpl.cpp1208 HeifImageHdrType HeifDecoderImpl::getHdrType() in getHdrType()
1213 return uwaInfo.empty() ? HeifImageHdrType::ISO_SINGLE : HeifImageHdrType::VIVID_SINGLE; in getHdrType()
1216 return uwaInfo.empty() ? HeifImageHdrType::ISO_DUAL : HeifImageHdrType::VIVID_DUAL; in getHdrType()
1218 return HeifImageHdrType::UNKNOWN; in getHdrType()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hdr/
H A Dhdr_helper.cpp105 static const map<HeifImageHdrType, ImageHdrType> HEIF_HDR_TYPE_MAP = {
106 { HeifImageHdrType::UNKNOWN, ImageHdrType::UNKNOWN},
107 { HeifImageHdrType::VIVID_DUAL, ImageHdrType::HDR_VIVID_DUAL},
108 { HeifImageHdrType::ISO_DUAL, ImageHdrType::HDR_ISO_DUAL},
109 { HeifImageHdrType::VIVID_SINGLE, ImageHdrType::HDR_VIVID_SINGLE},
110 { HeifImageHdrType::ISO_SINGLE, ImageHdrType::HDR_ISO_SINGLE},
334 HeifImageHdrType heifHdrType = decoder->getHdrType(); in CheckHeifHdrType()
336 [heifHdrType](const map<HeifImageHdrType, ImageHdrType>::value_type item) { in CheckHeifHdrType() argument