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

/frameworks/wilhelm/src/android/
H A DVideoCodec_to_android.cpp91 Vector<MediaCodecInfo::ProfileLevel> &profileLevels = local
93 caps->getSupportedProfileLevels(&profileLevels);
97 for (size_t i = 0, size = profileLevels.size(); i < size; ) {
98 MediaCodecInfo::ProfileLevel profileLevel = profileLevels.itemAt(i);
105 profileLevels.removeAt(i);
111 if ((VideoDecoderNbProfLevel[m] = profileLevels.size()) > 0) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp48 const CodecProfileLevel *profileLevels,
54 name, componentRole, codingType, profileLevels, numProfileLevels,
44 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.cpp65 const CodecProfileLevel *profileLevels,
72 profileLevels, numProfileLevels,
60 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/av/media/libstagefright/codecs/on2/enc/
H A DSoftVPXEncoder.cpp68 const CodecProfileLevel *profileLevels,
71 name, role, codingType, profileLevels, numProfileLevels,
60 SoftVPXEncoder(const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component, const char* role, OMX_VIDEO_CODINGTYPE codingType, const char* mimeType, int32_t minCompressionRatio, const CodecProfileLevel *profileLevels, size_t numProfileLevels) 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);
H A Dandroid_media_MediaCodec.cpp639 Vector<MediaCodecInfo::ProfileLevel> profileLevels; local
646 capabilities->getSupportedProfileLevels(&profileLevels);
663 profileLevels.size(), gCodecInfo.profileLevelClazz, NULL));
665 for (size_t i = 0; i < profileLevels.size(); ++i) {
666 const MediaCodecInfo::ProfileLevel &src = profileLevels.itemAt(i);
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp47 const CodecProfileLevel *profileLevels,
71 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.cpp61 const CodecProfileLevel *profileLevels,
79 mProfileLevels(profileLevels),
57 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.cpp667 Vector<MediaCodecInfo::ProfileLevel> profileLevels; local
668 caps->getSupportedProfileLevels(&profileLevels);
669 if (profileLevels.size() == 0) {
674 for (size_t j = 0; j < profileLevels.size(); ++j) {
675 const MediaCodecInfo::ProfileLevel &profileLevel = profileLevels[j];
/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
660 for (CodecProfileLevel pl : profileLevels) {
708 for (CodecProfileLevel pl: profileLevels) {
834 // profileLevels and colorFormats may be modified by client.
835 caps.profileLevels = Arrays.copyOf(profileLevels, profileLevels.length);
907 profileLevels = profLevs;
2055 CodecProfileLevel[] profileLevels = mParent.profileLevels;
[all...]

Completed in 224 milliseconds