Searched defs:profileLevels (Results 1 - 9 of 9) sorted by relevance

/frameworks/wilhelm/src/android/
H A DVideoCodec_to_android.cpp90 Vector<MediaCodecInfo::ProfileLevel> &profileLevels = local
92 caps->getSupportedProfileLevels(&profileLevels);
96 for (size_t i = 0, size = profileLevels.size(); i < size; ) {
97 MediaCodecInfo::ProfileLevel profileLevel = profileLevels.itemAt(i);
104 profileLevels.removeAt(i);
110 if ((VideoDecoderNbProfLevel[m] = profileLevels.size()) > 0) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp56 const CodecProfileLevel *profileLevels,
62 name, componentRole, codingType, profileLevels, numProfileLevels,
52 SoftMPEG4( const char *name, const char *componentRole, OMX_VIDEO_CODINGTYPE codingType, const CodecProfileLevel *profileLevels, size_t numProfileLevels, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp68 const CodecProfileLevel *profileLevels,
75 profileLevels, numProfileLevels,
63 SoftMPEG4Encoder( const char *name, const char *componentRole, OMX_VIDEO_CODINGTYPE codingType, const char *mime, const CodecProfileLevel *profileLevels, size_t numProfileLevels, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodecList.cpp171 Vector<MediaCodecInfo::ProfileLevel> profileLevels; local
188 capabilities->getSupportedProfileLevels(&profileLevels);
213 env->NewObjectArray(profileLevels.size(), profileLevelClazz, NULL);
221 for (size_t i = 0; i < profileLevels.size(); ++i) {
222 const MediaCodecInfo::ProfileLevel &src = profileLevels.itemAt(i);
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp47 const CodecProfileLevel *profileLevels,
69 mProfileLevels(profileLevels),
43 SoftVideoDecoderOMXComponent( const char *name, const char *componentRole, OMX_VIDEO_CODINGTYPE codingType, const CodecProfileLevel *profileLevels, size_t numProfileLevels, int32_t width, int32_t height, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
H A DSoftVideoEncoderOMXComponent.cpp59 const CodecProfileLevel *profileLevels,
77 mProfileLevels(profileLevels),
55 SoftVideoEncoderOMXComponent( const char *name, const char *componentRole, OMX_VIDEO_CODINGTYPE codingType, const CodecProfileLevel *profileLevels, size_t numProfileLevels, int32_t width, int32_t height, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp658 Vector<MediaCodecInfo::ProfileLevel> profileLevels; local
659 caps->getSupportedProfileLevels(&profileLevels);
660 if (profileLevels.size() == 0) {
665 for (size_t j = 0; j < profileLevels.size(); ++j) {
666 const MediaCodecInfo::ProfileLevel &profileLevel = profileLevels[j];
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp268 Vector<MediaCodecInfo::ProfileLevel> profileLevels; local
269 caps->getSupportedProfileLevels(&profileLevels);
271 for (size_t ix = 0; ix < profileLevels.size(); ix++) {
276 profileLevels.itemAt(ix);
/frameworks/base/media/java/android/media/
H A DMediaCodecInfo.java162 public CodecProfileLevel[] profileLevels; // NOTE this array is modifiable by user field in class:MediaCodecInfo.CodecCapabilities
654 for (CodecProfileLevel pl : profileLevels) {
702 for (CodecProfileLevel pl: profileLevels) {
828 Arrays.copyOf(profileLevels, profileLevels.length),
891 profileLevels = profLevs;
2034 CodecProfileLevel[] profileLevels = mParent.profileLevels;
2042 for (CodecProfileLevel profileLevel: profileLevels) {
2127 for (CodecProfileLevel profileLevel: profileLevels) {
[all...]

Completed in 7170 milliseconds