Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DMediaCodecList.java163 private MediaCodecInfo[] mCodecInfos; field in MediaCodecList
172 mCodecInfos = sRegularCodecInfos; in MediaCodecList()
174 mCodecInfos = sAllCodecInfos; in MediaCodecList()
183 return Arrays.copyOf(mCodecInfos, mCodecInfos.length); in getCodecInfos()
243 for (MediaCodecInfo info: mCodecInfos) { in findCodecForFormat()
/frameworks/av/media/libstagefright/
DMediaCodecList.cpp233 mCodecInfos.clear(); in parseTopLevelXMLFile()
262 for (size_t i = mCodecInfos.size(); i > 0;) { in parseTopLevelXMLFile()
264 const MediaCodecInfo &info = *mCodecInfos.itemAt(i).get(); in parseTopLevelXMLFile()
270 mCodecInfos.removeAt(i); in parseTopLevelXMLFile()
324 for (size_t i = 0; i < mCodecInfos.size(); ++i) { in parseTopLevelXMLFile()
325 const CodecInfo &info = mCodecInfos.itemAt(i); in parseTopLevelXMLFile()
675 for (size_t i = 0; i < mCodecInfos.size(); ++i) { in setCurrentCodecInfo()
676 if (AString(name) == mCodecInfos[i]->getCodecName()) { in setCurrentCodecInfo()
677 if (mCodecInfos[i]->getCapabilitiesFor(type) == NULL) { in setCurrentCodecInfo()
683 mCurrentInfo = mCodecInfos.editItemAt(i); in setCurrentCodecInfo()
[all …]
/frameworks/av/media/libstagefright/include/
DMediaCodecList.h50 if (index >= mCodecInfos.size()) { in getCodecInfo()
54 return mCodecInfos.itemAt(index); in getCodecInfo()
116 Vector<sp<MediaCodecInfo> > mCodecInfos; member
/frameworks/av/media/vndk/xmlparser/1.0/
DMediaCodecsXmlParser.cpp121 mCodecInfos.clear(); in parseTopLevelXMLFile()
317 bool outside = !inType && mCurrentType == mCodecInfos[mCurrentName].mTypes.end(); in startElementHandler()
373 mCurrentType = mCodecInfos[mCurrentName].mTypes.end(); in endElementHandler()
506 if (mUpdate != (mCodecInfos.count(name) > 0)) { in addMediaCodecFromAttributes()
511 CodecInfo *info = &mCodecInfos[name]; in addMediaCodecFromAttributes()
599 CodecInfo *info = &mCodecInfos[mCurrentName]; in addTypeFromAttributes()
674 if (mCurrentType == mCodecInfos[mCurrentName].mTypes.end()) { in addLimit()
825 if (mCurrentType == mCodecInfos[mCurrentName].mTypes.end()) { in addFeature()
844 if (mCodecInfos.count(name) == 0) { in getCodecInfo()
848 *info = mCodecInfos.at(name); in getCodecInfo()
/frameworks/av/include/media/vndk/xmlparser/1.0/
DMediaCodecsXmlParser.h100 std::map<AString, CodecInfo> mCodecInfos; variable