Home
last modified time | relevance | path

Searched refs:profileLevels (Results 1 – 22 of 22) sorted by relevance

/frameworks/wilhelm/src/android/
DVideoCodec_to_android.cpp91 Vector<MediaCodecInfo::ProfileLevel> &profileLevels = in android_videoCodec_expose() local
93 caps->getSupportedProfileLevels(&profileLevels); in android_videoCodec_expose()
97 for (size_t i = 0, size = profileLevels.size(); i < size; ) { in android_videoCodec_expose()
98 MediaCodecInfo::ProfileLevel profileLevel = profileLevels.itemAt(i); in android_videoCodec_expose()
105 profileLevels.removeAt(i); in android_videoCodec_expose()
111 if ((VideoDecoderNbProfLevel[m] = profileLevels.size()) > 0) { in android_videoCodec_expose()
/frameworks/av/media/libmedia/tests/codeclist/
DCodecListTest.cpp145 Vector<MediaCodecInfo::ProfileLevel> profileLevels; in TEST() local
146 capabilities->getSupportedProfileLevels(&profileLevels); in TEST()
147 if (!profileLevels.empty()) { in TEST()
150 for (auto profileLevel : profileLevels) { in TEST()
/frameworks/base/media/jni/
Dandroid_media_MediaCodecList.cpp248 Vector<MediaCodecInfo::ProfileLevel> profileLevels; in android_media_MediaCodecList_getCodecCapabilities() local
265 capabilities->getSupportedProfileLevels(&profileLevels); in android_media_MediaCodecList_getCodecCapabilities()
289 env->NewObjectArray(profileLevels.size(), profileLevelClazz, NULL); in android_media_MediaCodecList_getCodecCapabilities()
297 for (size_t i = 0; i < profileLevels.size(); ++i) { in android_media_MediaCodecList_getCodecCapabilities()
298 const MediaCodecInfo::ProfileLevel &src = profileLevels.itemAt(i); in android_media_MediaCodecList_getCodecCapabilities()
Dandroid_media_MediaCodec.cpp836 Vector<MediaCodecInfo::ProfileLevel> profileLevels; in getCodecCapabilitiesObject() local
843 capabilities->getSupportedProfileLevels(&profileLevels); in getCodecCapabilitiesObject()
859 profileLevels.size(), gCodecInfo.profileLevelClazz, NULL)); in getCodecCapabilitiesObject()
861 for (size_t i = 0; i < profileLevels.size(); ++i) { in getCodecCapabilitiesObject()
862 const MediaCodecInfo::ProfileLevel &src = profileLevels.itemAt(i); in getCodecCapabilitiesObject()
/frameworks/av/media/libstagefright/
DMediaCodecList.cpp516 Vector<MediaCodecInfo::ProfileLevel> profileLevels; in codecHandlesFormat() local
517 capabilities->getSupportedProfileLevels(&profileLevels); in codecHandlesFormat()
518 auto it = profileLevels.begin(); in codecHandlesFormat()
519 for (; it != profileLevels.end(); ++it) { in codecHandlesFormat()
529 if (it == profileLevels.end()) { in codecHandlesFormat()
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
DSoftMPEG4.h31 const CodecProfileLevel *profileLevels,
DSoftMPEG4.cpp47 const CodecProfileLevel *profileLevels, in SoftMPEG4() argument
53 name, componentRole, codingType, profileLevels, numProfileLevels, in SoftMPEG4()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
DSoftMPEG4Encoder.h35 const CodecProfileLevel *profileLevels,
DSoftMPEG4Encoder.cpp65 const CodecProfileLevel *profileLevels, in SoftMPEG4Encoder() argument
72 profileLevels, numProfileLevels, in SoftMPEG4Encoder()
/frameworks/av/media/libmedia/
DMediaCodecInfo.cpp41 Vector<ProfileLevel> *profileLevels) const { in getSupportedProfileLevels()
42 profileLevels->clear(); in getSupportedProfileLevels()
43 profileLevels->appendVector(mProfileLevels); in getSupportedProfileLevels()
/frameworks/av/media/libstagefright/codecs/on2/enc/
DSoftVPXEncoder.h69 const CodecProfileLevel *profileLevels,
DSoftVPXEncoder.cpp69 const CodecProfileLevel *profileLevels, in SoftVPXEncoder() argument
72 name, role, codingType, profileLevels, numProfileLevels, in SoftVPXEncoder()
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
DSoftVideoEncoderOMXComponent.h36 const CodecProfileLevel *profileLevels,
DSoftVideoDecoderOMXComponent.h44 const CodecProfileLevel *profileLevels,
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java249 public CodecProfileLevel[] profileLevels; // NOTE this array is modifiable by user field in MediaCodecInfo.CodecCapabilities
925 for (CodecProfileLevel pl : profileLevels) { in isFormatSupported()
979 for (CodecProfileLevel pl: profileLevels) { in supportsProfileLevel()
1106 caps.profileLevels = Arrays.copyOf(profileLevels, profileLevels.length); in dup()
1178 profileLevels = profLevs; in CodecCapabilities()
2849 CodecProfileLevel[] profileLevels = mParent.profileLevels;
2857 for (CodecProfileLevel profileLevel: profileLevels) {
2950 for (CodecProfileLevel profileLevel: profileLevels) {
3018 for (CodecProfileLevel profileLevel: profileLevels) {
3131 for (CodecProfileLevel profileLevel: profileLevels) {
[all …]
/frameworks/av/media/libmedia/include/media/
DMediaCodecInfo.h78 void getSupportedProfileLevels(Vector<ProfileLevel> *profileLevels) const;
/frameworks/av/cmds/stagefright/
Dstagefright.cpp740 Vector<MediaCodecInfo::ProfileLevel> profileLevels; in dumpCodecDetails() local
741 caps->getSupportedProfileLevels(&profileLevels); in dumpCodecDetails()
742 for (const MediaCodecInfo::ProfileLevel &pl : profileLevels) { in dumpCodecDetails()
/frameworks/av/media/libstagefright/omx/
DSoftVideoEncoderOMXComponent.cpp61 const CodecProfileLevel *profileLevels, in SoftVideoEncoderOMXComponent() argument
79 mProfileLevels(profileLevels), in SoftVideoEncoderOMXComponent()
DSoftVideoDecoderOMXComponent.cpp47 const CodecProfileLevel *profileLevels, in SoftVideoDecoderOMXComponent() argument
71 mProfileLevels(profileLevels), in SoftVideoDecoderOMXComponent()
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.cpp370 Vector<MediaCodecInfo::ProfileLevel> profileLevels; in dumpCodecDetails() local
371 caps->getSupportedProfileLevels(&profileLevels); in dumpCodecDetails()
372 for (const MediaCodecInfo::ProfileLevel &pl : profileLevels) { in dumpCodecDetails()
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt14647 field public android.media.MediaCodecInfo.CodecProfileLevel[] profileLevels;
/frameworks/base/core/api/
Dcurrent.txt21499 field public android.media.MediaCodecInfo.CodecProfileLevel[] profileLevels;