Searched defs:matchingCodecs (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp199 Vector<CodecNameAndQuirks> *matchingCodecs) {
200 matchingCodecs->clear();
235 ssize_t index = matchingCodecs->add();
236 CodecNameAndQuirks *entry = &matchingCodecs->editItemAt(index);
246 matchingCodecs->sort(CompareSoftwareCodecsFirst);
308 Vector<CodecNameAndQuirks> matchingCodecs; local
310 mime, createEncoder, matchComponentName, flags, &matchingCodecs);
312 if (matchingCodecs.isEmpty()) {
322 for (size_t i = 0; i < matchingCodecs.size(); ++i) {
323 const char *componentNameBase = matchingCodecs[
195 findMatchingCodecs( const char *mime, bool createEncoder, const char *matchComponentName, uint32_t flags, Vector<CodecNameAndQuirks> *matchingCodecs) argument
4458 Vector<OMXCodec::CodecNameAndQuirks> matchingCodecs; local
[all...]
H A DACodec.cpp4844 Vector<OMXCodec::CodecNameAndQuirks> matchingCodecs; local
4852 ssize_t index = matchingCodecs.add();
4853 OMXCodec::CodecNameAndQuirks *entry = &matchingCodecs.editItemAt(index);
4872 &matchingCodecs);
4878 for (size_t matchIndex = 0; matchIndex < matchingCodecs.size();
4880 componentName = matchingCodecs.itemAt(matchIndex).mName.string();
4881 quirks = matchingCodecs.itemAt(matchIndex).mQuirks;

Completed in 17 milliseconds