Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:h263type

1014     OMX_VIDEO_PARAM_H263TYPE h263type;
1015 InitOMXParams(&h263type);
1016 h263type.nPortIndex = kPortIndexOutput;
1019 mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));
1022 h263type.nAllowedPictureTypes =
1025 h263type.nPFrames = setPFramesSpacing(iFramesInterval, frameRate);
1026 if (h263type.nPFrames == 0) {
1027 h263type.nAllowedPictureTypes = OMX_VIDEO_PictureTypeI;
1029 h263type.nBFrames = 0;
1033 defaultProfileLevel.mProfile = h263type.eProfile;
1034 defaultProfileLevel.mLevel = h263type.eLevel;
1037 h263type.eProfile = static_cast<OMX_VIDEO_H263PROFILETYPE>(profileLevel.mProfile);
1038 h263type.eLevel = static_cast<OMX_VIDEO_H263LEVELTYPE>(profileLevel.mLevel);
1040 h263type.bPLUSPTYPEAllowed = OMX_FALSE;
1041 h263type.bForceRoundingTypeToZero = OMX_FALSE;
1042 h263type.nPictureHeaderRepetition = 0;
1043 h263type.nGOBHeaderInterval = 0;
1046 mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));