Searched defs:h263type (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp356 OMX_VIDEO_PARAM_H263TYPE *h263type = local
359 if (h263type->nPortIndex != 1) {
363 h263type->nAllowedPictureTypes =
365 h263type->eProfile = OMX_VIDEO_H263ProfileBaseline;
366 h263type->eLevel = OMX_VIDEO_H263Level45;
367 h263type->bPLUSPTYPEAllowed = OMX_FALSE;
368 h263type->bForceRoundingTypeToZero = OMX_FALSE;
369 h263type->nPictureHeaderRepetition = 0;
370 h263type->nGOBHeaderInterval = 0;
548 OMX_VIDEO_PARAM_H263TYPE *h263type local
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp1860 OMX_VIDEO_PARAM_H263TYPE h263type; local
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
[all...]
H A DOMXCodec.cpp1014 OMX_VIDEO_PARAM_H263TYPE h263type; local
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
[all...]

Completed in 114 milliseconds