Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/codec2/sfplugin/
H A DCodec2InfoBuilder.cpp567 for (auto typeIt = codec.typeMap.begin(); typeIt != codec.typeMap.end(); ++typeIt) { in buildMediaCodecList() local
568 const std::string &mediaType = typeIt->first; in buildMediaCodecList()
583 ALOGI("adding type '%s'", typeIt->first.c_str()); in buildMediaCodecList()
584 const MediaCodecsXmlParser::AttributeMap &attrMap = typeIt->second; in buildMediaCodecList()
/aosp12/frameworks/av/media/libstagefright/xmlparser/
H A DMediaCodecsXmlParser.cpp992 TypeMap::iterator typeIt; in enterMediaCodec() local
1004 typeIt = codecIt->second.typeMap.end(); in enterMediaCodec()
1015 typeIt = codecIt->second.typeMap.find(type); in enterMediaCodec()
1016 if (typeIt == codecIt->second.typeMap.end()) { in enterMediaCodec()
1023 typeIt = codecIt->second.typeMap.begin(); in enterMediaCodec()
1024 if (typeIt == codecIt->second.typeMap.end() in enterMediaCodec()
1032 mCurrent.emplace_back(CodecAndType{name, codecIt, typeIt, updating}); in enterMediaCodec()
1142 TypeMap::iterator typeIt = codecIt->second.typeMap.find(name); in enterType() local
1144 if (typeIt != codecIt->second.typeMap.end()) { in enterType()
1148 } else if (typeIt == codecIt->second.typeMap.end()) { in enterType()
[all …]