Home
last modified time | relevance | path

Searched refs:typeMap (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libmedia/tests/codeclist/
DCodecListTest.cpp130 MediaCodecsXmlParser::TypeMap typeMap = codecProperties.typeMap; in TEST() local
133 auto searchTypeMap = typeMap.find(mediaType.c_str()); in TEST()
134 ASSERT_NE(searchTypeMap, typeMap.end()) in TEST()
/frameworks/av/media/libstagefright/xmlparser/
DMediaCodecsXmlParser.cpp268 && mCurrent.back().mType != mCurrent.back().mCodec->second.typeMap.end(); in inType()
1025 typeIt = codecIt->second.typeMap.insert(Type(type, AttributeMap())).first; in enterMediaCodec()
1027 typeIt = codecIt->second.typeMap.end(); in enterMediaCodec()
1038 typeIt = codecIt->second.typeMap.find(type); in enterMediaCodec()
1039 if (typeIt == codecIt->second.typeMap.end()) { in enterMediaCodec()
1046 typeIt = codecIt->second.typeMap.begin(); in enterMediaCodec()
1047 if (typeIt == codecIt->second.typeMap.end() in enterMediaCodec()
1048 || codecIt->second.typeMap.size() != 1) { in enterMediaCodec()
1209 TypeMap::iterator typeIt = codecIt->second.typeMap.find(name); in enterType()
1211 if (typeIt != codecIt->second.typeMap.end()) { in enterType()
[all …]
/frameworks/av/media/libstagefright/xmlparser/test/
DXMLParserTest.cpp265 codecProperty.codecProp.typeMap = TypeMapDataBase; in setCodecProperties()
313 map<string, MediaCodecsXmlParser::AttributeMap> TypeMap = properties.typeMap; in printCodecMap()
380 mInputDataVector.at(index).codecProp.typeMap; in TEST_F()
381 map<string, MediaCodecsXmlParser::AttributeMap> TypeMap = properties.typeMap; in TEST_F()
/frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
DMediaCodecsXmlParser.h70 TypeMap typeMap; ///< Map of types supported by this codec member
/frameworks/av/media/codec2/sfplugin/
DCodec2InfoBuilder.cpp670 for (auto typeIt = codec.typeMap.begin(); typeIt != codec.typeMap.end(); ++typeIt) { in buildMediaCodecList()