Searched defs:profileLevel (Results 1 - 10 of 10) sorted by relevance
/frameworks/av/media/libstagefright/ |
H A D | MediaCodecList.cpp | 540 ProfileLevel profileLevel; local 541 profileLevel.mProfile = src.mProfile; 542 profileLevel.mLevel = src.mLevel; 543 profileLevels->push(profileLevel);
|
H A D | OMXCodec.cpp | 951 CodecProfileLevel &profileLevel) { 986 profileLevel.mProfile = profile; 987 profileLevel.mLevel = level; 1021 CodecProfileLevel defaultProfileLevel, profileLevel; local 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); 1078 CodecProfileLevel defaultProfileLevel, profileLevel; local 1081 err = getVideoProfileLevel(meta, defaultProfileLevel, profileLevel); 1083 mpeg4type.eProfile = static_cast<OMX_VIDEO_MPEG4PROFILETYPE>(profileLevel 948 getVideoProfileLevel( const sp<MetaData>& meta, const CodecProfileLevel& defaultProfileLevel, CodecProfileLevel &profileLevel) argument 1115 CodecProfileLevel defaultProfileLevel, profileLevel; local 4591 CodecProfileLevel profileLevel; local [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/ |
H A D | SoftMPEG4.cpp | 206 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel = local 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/on2/h264dec/ |
H A D | SoftAVC.cpp | 203 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel = local 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/m4v_h263/enc/ |
H A D | SoftMPEG4Encoder.cpp | 401 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel = local 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/libvideoeditor/vss/common/inc/ |
H A D | M4DECODER_Common.h | 231 VideoProfileLevel *profileLevel; member in struct:__anon132
|
H A D | M4SYS_Stream.h | 147 M4OSA_UInt8 profileLevel; /**< The profile & level of a stream. It is related to the member in struct:__anon183
|
/frameworks/av/media/libstagefright/codecs/avc/enc/ |
H A D | SoftAVCEncoder.cpp | 515 OMX_VIDEO_PARAM_PROFILELEVELTYPE *profileLevel = local 518 if (profileLevel->nPortIndex != 1) { 525 if (profileLevel->nProfileIndex >= size) { 529 profileLevel->eProfile = OMX_VIDEO_AVCProfileBaseline; 530 profileLevel->eLevel = ConversionTable[profileLevel->nProfileIndex].omxLevel;
|
/frameworks/av/cmds/stagefright/ |
H A D | stagefright.cpp | 646 const CodecProfileLevel &profileLevel = local 650 profileLevel.mProfile, profileLevel.mLevel);
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
H A D | VideoEditorVideoDecoder.cpp | 648 pProfileLevel = pOmxComponents->profileLevel; 722 const CodecProfileLevel &profileLevel = local 725 if (profileLevel.mProfile != profile) { 726 profile = profileLevel.mProfile; 732 pOmxComponents->profileLevel = pProfileLevel; 740 const CodecProfileLevel &profileLevel = local 743 profile = profileLevel.mProfile; 744 maxLevel = profileLevel.mLevel; 750 if (profileLevel.mProfile != profile) { 751 profile = profileLevel [all...] |
Completed in 1147 milliseconds