HomeSort by relevance Sort by last modified time
    Searched defs:profileLevel (Results 1 - 10 of 10) sorted by null

  /frameworks/av/media/libstagefright/
MediaCodecList.cpp 511 Vector<ProfileLevel> *profileLevels,
540 ProfileLevel profileLevel;
541 profileLevel.mProfile = src.mProfile;
542 profileLevel.mLevel = src.mLevel;
543 profileLevels->push(profileLevel);
OMXCodec.cpp 951 CodecProfileLevel &profileLevel) {
986 profileLevel.mProfile = profile;
987 profileLevel.mLevel = level;
1021 CodecProfileLevel defaultProfileLevel, profileLevel;
1024 err = getVideoProfileLevel(meta, defaultProfileLevel, profileLevel);
1026 h263type.eProfile = static_cast<OMX_VIDEO_H263PROFILETYPE>(profileLevel.mProfile);
1027 h263type.eLevel = static_cast<OMX_VIDEO_H263LEVELTYPE>(profileLevel.mLevel);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp 206 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel =
209 if (profileLevel->nPortIndex != 0) { // Input port only
210 ALOGE("Invalid port index: %ld", profileLevel->nPortIndex);
214 size_t index = profileLevel->nProfileIndex;
222 profileLevel->eProfile = kH263ProfileLevels[index].mProfile;
223 profileLevel->eLevel = kH263ProfileLevels[index].mLevel;
231 profileLevel->eProfile = kM4VProfileLevels[index].mProfile;
232 profileLevel->eLevel = kM4VProfileLevels[index].mLevel;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
SoftMPEG4Encoder.cpp 401 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel =
404 if (profileLevel->nPortIndex != 1) {
408 if (profileLevel->nProfileIndex > 0) {
413 profileLevel->eProfile = OMX_VIDEO_H263ProfileBaseline;
414 profileLevel->eLevel = OMX_VIDEO_H263Level45;
416 profileLevel->eProfile = OMX_VIDEO_MPEG4ProfileCore;
417 profileLevel->eLevel = OMX_VIDEO_MPEG4Level2;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/
SoftAVC.cpp 203 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel =
206 if (profileLevel->nPortIndex != kInputPortIndex) {
207 ALOGE("Invalid port index: %ld", profileLevel->nPortIndex);
211 size_t index = profileLevel->nProfileIndex;
218 profileLevel->eProfile = kProfileLevels[index].mProfile;
219 profileLevel->eLevel = kProfileLevels[index].mLevel;
  /frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.cpp 515 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel =
518 if (profileLevel->nPortIndex != 1) {
525 if (profileLevel->nProfileIndex >= size) {
529 profileLevel->eProfile = OMX_VIDEO_AVCProfileBaseline;
530 profileLevel->eLevel = ConversionTable[profileLevel->nProfileIndex].omxLevel;
    [all...]
  /frameworks/av/libvideoeditor/vss/common/inc/
M4DECODER_Common.h 231 VideoProfileLevel *profileLevel;
M4SYS_Stream.h 147 M4OSA_UInt8 profileLevel; /**< The profile & level of a stream. It is related to the
  /frameworks/av/cmds/stagefright/
stagefright.cpp 646 const CodecProfileLevel &profileLevel =
650 profileLevel.mProfile, profileLevel.mLevel);
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoDecoder.cpp 648 pProfileLevel = pOmxComponents->profileLevel;
722 const CodecProfileLevel &profileLevel =
725 if (profileLevel.mProfile != profile) {
726 profile = profileLevel.mProfile;
732 pOmxComponents->profileLevel = pProfileLevel;
740 const CodecProfileLevel &profileLevel =
743 profile = profileLevel.mProfile;
744 maxLevel = profileLevel.mLevel;
750 if (profileLevel.mProfile != profile) {
751 profile = profileLevel.mProfile
    [all...]

Completed in 411 milliseconds