Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:h263type

1860     OMX_VIDEO_PARAM_H263TYPE h263type;
1861 InitOMXParams(&h263type);
1862 h263type.nPortIndex = kPortIndexOutput;
1865 mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));
1871 h263type.nAllowedPictureTypes =
1874 h263type.nPFrames = setPFramesSpacing(iFrameInterval, frameRate);
1875 if (h263type.nPFrames == 0) {
1876 h263type.nAllowedPictureTypes = OMX_VIDEO_PictureTypeI;
1878 h263type.nBFrames = 0;
1893 h263type.eProfile = static_cast<OMX_VIDEO_H263PROFILETYPE>(profile);
1894 h263type.eLevel = static_cast<OMX_VIDEO_H263LEVELTYPE>(level);
1897 h263type.bPLUSPTYPEAllowed = OMX_FALSE;
1898 h263type.bForceRoundingTypeToZero = OMX_FALSE;
1899 h263type.nPictureHeaderRepetition = 0;
1900 h263type.nGOBHeaderInterval = 0;
1903 mNode, OMX_IndexParamVideoH263, &h263type, sizeof(h263type));