Home
last modified time | relevance | path

Searched refs:startsWithIgnoreCase (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/
DMediaCodecList.cpp317 return componentName.startsWithIgnoreCase("OMX.google.") in isSoftwareCodec()
318 || componentName.startsWithIgnoreCase("c2.android.") in isSoftwareCodec()
319 || (!componentName.startsWithIgnoreCase("OMX.") in isSoftwareCodec()
320 && !componentName.startsWithIgnoreCase("c2.")); in isSoftwareCodec()
332 bool isC2_1 = name1->startsWithIgnoreCase("c2."); in compareSoftwareCodecsFirst()
333 bool isC2_2 = name2->startsWithIgnoreCase("c2."); in compareSoftwareCodecsFirst()
339 bool isOMX1 = name1->startsWithIgnoreCase("OMX."); in compareSoftwareCodecsFirst()
340 bool isOMX2 = name2->startsWithIgnoreCase("OMX."); in compareSoftwareCodecsFirst()
DMediaCodec.cpp1037 if (name.startsWithIgnoreCase("c2.")) { in GetCodecBase()
1039 } else if (name.startsWithIgnoreCase("omx.")) { in GetCodecBase()
1042 } else if (name.startsWithIgnoreCase("android.filter.")) { in GetCodecBase()
2600 if (mime.startsWithIgnoreCase("video/")) { in onMessageReceived()
DMediaCodecSource.cpp500 mIsVideo = outputMIME.startsWithIgnoreCase("video/"); in initEncoder()
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DAString.h87 bool startsWithIgnoreCase(const char *prefix) const;
/frameworks/av/media/libstagefright/foundation/
DAString.cpp354 bool AString::startsWithIgnoreCase(const char *prefix) const { in startsWithIgnoreCase() function in android::AString
/frameworks/base/media/jni/
Dandroid_media_MediaCodec.cpp312 mGraphicOutput = (mime.startsWithIgnoreCase("video/") || mime.startsWithIgnoreCase("image/")) in configure()