Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:mpeg4type

1061     OMX_VIDEO_PARAM_MPEG4TYPE mpeg4type;
1062 InitOMXParams(&mpeg4type);
1063 mpeg4type.nPortIndex = kPortIndexOutput;
1066 mNode, OMX_IndexParamVideoMpeg4, &mpeg4type, sizeof(mpeg4type));
1069 mpeg4type.nSliceHeaderSpacing = 0;
1070 mpeg4type.bSVH = OMX_FALSE;
1071 mpeg4type.bGov = OMX_FALSE;
1073 mpeg4type.nAllowedPictureTypes =
1076 mpeg4type.nPFrames = setPFramesSpacing(iFramesInterval, frameRate);
1077 if (mpeg4type.nPFrames == 0) {
1078 mpeg4type.nAllowedPictureTypes = OMX_VIDEO_PictureTypeI;
1080 mpeg4type.nBFrames = 0;
1081 mpeg4type.nIDCVLCThreshold = 0;
1082 mpeg4type.bACPred = OMX_TRUE;
1083 mpeg4type.nMaxPacketSize = 256;
1084 mpeg4type.nTimeIncRes = 1000;
1085 mpeg4type.nHeaderExtension = 0;
1086 mpeg4type.bReversibleVLC = OMX_FALSE;
1090 defaultProfileLevel.mProfile = mpeg4type.eProfile;
1091 defaultProfileLevel.mLevel = mpeg4type.eLevel;
1094 mpeg4type.eProfile = static_cast<OMX_VIDEO_MPEG4PROFILETYPE>(profileLevel.mProfile);
1095 mpeg4type.eLevel = static_cast<OMX_VIDEO_MPEG4LEVELTYPE>(profileLevel.mLevel);
1098 mNode, OMX_IndexParamVideoMpeg4, &mpeg4type, sizeof(mpeg4type));