Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/sfplugin/utils/
DCodec2Mapper.cpp580 HevcProfileLevelMapper(bool isHdr = false, bool isHdr10Plus = false) : in HevcProfileLevelMapper()
582 mIsHdr(isHdr), mIsHdr10Plus(isHdr10Plus) {} in HevcProfileLevelMapper()
661 Vp9ProfileLevelMapper(bool isHdr = false, bool isHdr10Plus = false) : in Vp9ProfileLevelMapper()
663 mIsHdr(isHdr), mIsHdr10Plus(isHdr10Plus) {} in Vp9ProfileLevelMapper()
691 Av1ProfileLevelMapper(bool isHdr = false, bool isHdr10Plus = false, int32_t bitDepth = 8) : in Av1ProfileLevelMapper()
693 mIsHdr(isHdr), mIsHdr10Plus(isHdr10Plus), mBitDepth(bitDepth) {} in Av1ProfileLevelMapper()
762 C2Mapper::GetHdrProfileLevelMapper(std::string mediaType, bool isHdr10Plus) { in GetHdrProfileLevelMapper() argument
765 return std::make_shared<HevcProfileLevelMapper>(true, isHdr10Plus); in GetHdrProfileLevelMapper()
767 return std::make_shared<Vp9ProfileLevelMapper>(true, isHdr10Plus); in GetHdrProfileLevelMapper()
769 return std::make_shared<Av1ProfileLevelMapper>(true, isHdr10Plus); in GetHdrProfileLevelMapper()
DCodec2Mapper.h54 GetHdrProfileLevelMapper(std::string mediaType, bool isHdr10Plus = false);